From 9e9f3bb1e2aeab8cf20f98f5cad159bbb6f24883 Mon Sep 17 00:00:00 2001 From: Alejandro Pedraza Date: Thu, 30 Apr 2020 18:05:24 -0500 Subject: [PATCH] Not use preemptible nodes in cloud and release workflows (#4315) Temporarily set `preemptible: false` for cloud and release workflows to see if that's the cause of nodes getting killed. --- .github/workflows/cloud_integration.yml | 1 + .github/workflows/release.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/cloud_integration.yml b/.github/workflows/cloud_integration.yml index 0dde0f382..030c61582 100644 --- a/.github/workflows/cloud_integration.yml +++ b/.github/workflows/cloud_integration.yml @@ -103,6 +103,7 @@ jobs: cloud_sdk_service_account_key: ${{ secrets.CLOUD_SDK_SERVICE_ACCOUNT_KEY }} gcp_project: ${{ secrets.GCP_PROJECT }} gcp_zone: ${{ secrets.GCP_ZONE }} + preemptible: false create: true name: testing-${{ steps.install_cli.outputs.tag }}-${{ github.run_id }} - name: Run integration tests diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f1f52ed7f..ea237fe0a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -192,6 +192,7 @@ jobs: cloud_sdk_service_account_key: ${{ secrets.CLOUD_SDK_SERVICE_ACCOUNT_KEY }} gcp_project: ${{ secrets.GCP_PROJECT }} gcp_zone: ${{ secrets.GCP_ZONE }} + preemptible: false create: true name: testing-${{ steps.install_cli.outputs.tag }}-${{ github.run_id }} - name: Run integration tests