Skip to content

Commit

Permalink
fix: remove unused arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
nachoaldamav committed Oct 22, 2023
1 parent fc0d377 commit 1ecea78
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Deploy and Run Tests on GCP VM
name: E2E Linux (Google Cloud)

on:
push:
Expand Down
14 changes: 4 additions & 10 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Deploy and Run Tests on GCP VM
name: E2E Windows (Google Cloud)

on:
push:
Expand Down Expand Up @@ -41,20 +41,14 @@ jobs:
gcloud compute instances create $INSTANCE_NAME `
--project=${{ secrets.GCP_PROJECT_ID }} `
--zone=us-central1-a `
--machine-type=e2-medium `
--machine-type=e2-small `
--no-restart-on-failure `
--maintenance-policy=TERMINATE `
--provisioning-model=SPOT `
--instance-termination-action=DELETE `
--service-account=${{ secrets.GCP_SERVICE_ACCOUNT }} `
--scopes=https://www.googleapis.com/auth/devstorage.read_only,https://www.googleapis.com/auth/logging.write,https://www.googleapis.com/auth/monitoring.write,https://www.googleapis.com/auth/servicecontrol,https://www.googleapis.com/auth/service.management.readonly,https://www.googleapis.com/auth/trace.append `
--create-disk=auto-delete=yes,boot=yes,device-name=$INSTANCE_NAME,image=projects/windows-cloud/global/images/windows-server-2022-dc-v20231011,mode=rw,size=50,type=projects/${{ secrets.GCP_PROJECT_ID }}/zones/us-central1-a/diskTypes/pd-balanced `
--no-shielded-secure-boot `
--shielded-secure-boot `
--shielded-vtpm `
--shielded-integrity-monitoring `
--labels=goog-ec-src=vm_add-gcloud `
--reservation-affinity=any `
--create-disk=size=10GB,device-name=$DISK_NAME,mode=rw,type=projects/${{ secrets.GCP_PROJECT_ID }}/zones/us-central1-a/diskTypes/pd-balanced `
--create-disk=auto-delete=yes,device-name=$INSTANCE_NAME,image=projects/windows-cloud/global/images/windows-server-2022-dc-v20231011,mode=rw,size=50,type=projects/${{ secrets.GCP_PROJECT_ID }}/zones/us-central1-a/diskTypes/pd-balanced ` --create-disk=size=10GB,device-name=$DISK_NAME,mode=rw,type=projects/${{ secrets.GCP_PROJECT_ID }}/zones/us-central1-a/diskTypes/pd-balanced `
--metadata sysprep-specialize-script-cmd="googet -noconfirm=true install google-compute-engine-ssh",enable-windows-ssh=TRUE
- name: Restart VM to apply SSH changes
Expand Down

0 comments on commit 1ecea78

Please sign in to comment.