From 2d518d60508d22b63aa1d4a6d6c7f5a6bcf3a4ff Mon Sep 17 00:00:00 2001 From: Marko Kosmerl Date: Fri, 28 Jun 2024 09:24:05 +0000 Subject: [PATCH 01/12] fix(IDX): fixing if expression --- .github/workflows-source/schedule-daily.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows-source/schedule-daily.yml b/.github/workflows-source/schedule-daily.yml index 97a2bcb017c..623e29a7acc 100644 --- a/.github/workflows-source/schedule-daily.yml +++ b/.github/workflows-source/schedule-daily.yml @@ -46,7 +46,7 @@ jobs: name: Cut RC runs-on: ubuntu-latest timeout-minutes: 30 - if: github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/master') + if: ${{ github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/master') }} steps: - name: Checkout uses: actions/checkout@v4 From 7cc9521e12d48b9055b2c57365f51d9d92b8c07e Mon Sep 17 00:00:00 2001 From: IDX GitHub Automation Date: Fri, 28 Jun 2024 09:25:01 +0000 Subject: [PATCH 02/12] IDX GitHub Automation --- .github/workflows/schedule-daily.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/schedule-daily.yml b/.github/workflows/schedule-daily.yml index a6940613976..0286bd22417 100644 --- a/.github/workflows/schedule-daily.yml +++ b/.github/workflows/schedule-daily.yml @@ -24,7 +24,7 @@ jobs: name: Cut RC runs-on: ubuntu-latest timeout-minutes: 30 - if: github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/master') + if: ${{ github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/master') }} steps: - name: Checkout uses: actions/checkout@v4 From 2469122e03cd9fde2612cad63e8c8391f6517b64 Mon Sep 17 00:00:00 2001 From: Marko Kosmerl Date: Fri, 28 Jun 2024 10:01:10 +0000 Subject: [PATCH 03/12] change --- .github/workflows-source/schedule-daily.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows-source/schedule-daily.yml b/.github/workflows-source/schedule-daily.yml index 623e29a7acc..2683cd14507 100644 --- a/.github/workflows-source/schedule-daily.yml +++ b/.github/workflows-source/schedule-daily.yml @@ -46,7 +46,7 @@ jobs: name: Cut RC runs-on: ubuntu-latest timeout-minutes: 30 - if: ${{ github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/master') }} + if: ${{ (github.event_name == 'schedule') || (github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/master') }} steps: - name: Checkout uses: actions/checkout@v4 From 132ab68ce51a57376efade8147873a119a6b51d2 Mon Sep 17 00:00:00 2001 From: IDX GitHub Automation Date: Fri, 28 Jun 2024 10:01:31 +0000 Subject: [PATCH 04/12] IDX GitHub Automation --- .github/workflows/schedule-daily.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/schedule-daily.yml b/.github/workflows/schedule-daily.yml index 0286bd22417..986c35832ea 100644 --- a/.github/workflows/schedule-daily.yml +++ b/.github/workflows/schedule-daily.yml @@ -24,7 +24,7 @@ jobs: name: Cut RC runs-on: ubuntu-latest timeout-minutes: 30 - if: ${{ github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/master') }} + if: ${{ (github.event_name == 'schedule') || (github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/master') }} steps: - name: Checkout uses: actions/checkout@v4 From e0ffbf429e53b0de30f3b0159bf884a9ee99d135 Mon Sep 17 00:00:00 2001 From: Marko Kosmerl Date: Fri, 28 Jun 2024 10:07:40 +0000 Subject: [PATCH 05/12] change --- .github/workflows-source/schedule-daily.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows-source/schedule-daily.yml b/.github/workflows-source/schedule-daily.yml index 2683cd14507..6bf819ff598 100644 --- a/.github/workflows-source/schedule-daily.yml +++ b/.github/workflows-source/schedule-daily.yml @@ -4,6 +4,7 @@ on: schedule: - cron: "0 1 * * *" workflow_dispatch: + pull_request: env: AWS_SHARED_CREDENTIALS_CONTENT: ${{ secrets.AWS_SHARED_CREDENTIALS_FILE }} @@ -46,7 +47,7 @@ jobs: name: Cut RC runs-on: ubuntu-latest timeout-minutes: 30 - if: ${{ (github.event_name == 'schedule') || (github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/master') }} + if: ${{ github.event_name == 'schedule' }} || ${{ github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/master' }} steps: - name: Checkout uses: actions/checkout@v4 From a4d96fb7f87edbf9ed182f53e511dceffdae379b Mon Sep 17 00:00:00 2001 From: IDX GitHub Automation Date: Fri, 28 Jun 2024 10:07:59 +0000 Subject: [PATCH 06/12] IDX GitHub Automation --- .github/workflows/schedule-daily.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/schedule-daily.yml b/.github/workflows/schedule-daily.yml index 986c35832ea..ef1e70114bd 100644 --- a/.github/workflows/schedule-daily.yml +++ b/.github/workflows/schedule-daily.yml @@ -3,6 +3,7 @@ on: schedule: - cron: "0 1 * * *" workflow_dispatch: + pull_request: env: AWS_SHARED_CREDENTIALS_CONTENT: ${{ secrets.AWS_SHARED_CREDENTIALS_FILE }} BAZEL_STARTUP_ARGS: "--output_base=/var/tmp/bazel-output/" @@ -24,7 +25,7 @@ jobs: name: Cut RC runs-on: ubuntu-latest timeout-minutes: 30 - if: ${{ (github.event_name == 'schedule') || (github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/master') }} + if: ${{ github.event_name == 'schedule' }} || ${{ github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/master' }} steps: - name: Checkout uses: actions/checkout@v4 From afc137ec2959cad7ea24c8079cef7d4c016a3692 Mon Sep 17 00:00:00 2001 From: Marko Kosmerl Date: Fri, 28 Jun 2024 10:12:16 +0000 Subject: [PATCH 07/12] change --- .github/workflows-source/schedule-daily.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows-source/schedule-daily.yml b/.github/workflows-source/schedule-daily.yml index 6bf819ff598..7db80e326cd 100644 --- a/.github/workflows-source/schedule-daily.yml +++ b/.github/workflows-source/schedule-daily.yml @@ -47,7 +47,7 @@ jobs: name: Cut RC runs-on: ubuntu-latest timeout-minutes: 30 - if: ${{ github.event_name == 'schedule' }} || ${{ github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/master' }} + if: ${{ github.event_name == 'schedule' }} || ${{ (github.event_name == 'workflow_dispatch') && (github.ref == 'refs/heads/master') }} steps: - name: Checkout uses: actions/checkout@v4 From b3c73088dea0e6708533bd54c9999b64c91720db Mon Sep 17 00:00:00 2001 From: IDX GitHub Automation Date: Fri, 28 Jun 2024 10:12:36 +0000 Subject: [PATCH 08/12] IDX GitHub Automation --- .github/workflows/schedule-daily.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/schedule-daily.yml b/.github/workflows/schedule-daily.yml index ef1e70114bd..7c9a690963d 100644 --- a/.github/workflows/schedule-daily.yml +++ b/.github/workflows/schedule-daily.yml @@ -25,7 +25,7 @@ jobs: name: Cut RC runs-on: ubuntu-latest timeout-minutes: 30 - if: ${{ github.event_name == 'schedule' }} || ${{ github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/master' }} + if: ${{ github.event_name == 'schedule' }} || ${{ (github.event_name == 'workflow_dispatch') && (github.ref == 'refs/heads/master') }} steps: - name: Checkout uses: actions/checkout@v4 From a25c5a690176dd90d39ca89f9b809a311fca7a73 Mon Sep 17 00:00:00 2001 From: Marko Kosmerl Date: Fri, 28 Jun 2024 10:21:03 +0000 Subject: [PATCH 09/12] change --- .github/workflows-source/schedule-daily.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows-source/schedule-daily.yml b/.github/workflows-source/schedule-daily.yml index 7db80e326cd..61094be2cc0 100644 --- a/.github/workflows-source/schedule-daily.yml +++ b/.github/workflows-source/schedule-daily.yml @@ -47,7 +47,7 @@ jobs: name: Cut RC runs-on: ubuntu-latest timeout-minutes: 30 - if: ${{ github.event_name == 'schedule' }} || ${{ (github.event_name == 'workflow_dispatch') && (github.ref == 'refs/heads/master') }} + if: github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/master') steps: - name: Checkout uses: actions/checkout@v4 @@ -70,7 +70,7 @@ jobs: <<: *dind-large-setup timeout-minutes: 720 # 12 hours # TODO: disable in GitLab before enabling here - if: ${{ && false }} + if: ${{ false }} strategy: matrix: targets: ["//rs/crypto/...", "//rs/state_manager/..."] From 409dcc187d985b0322e6025ff129802fdd728220 Mon Sep 17 00:00:00 2001 From: IDX GitHub Automation Date: Fri, 28 Jun 2024 10:21:23 +0000 Subject: [PATCH 10/12] IDX GitHub Automation --- .github/workflows/schedule-daily.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/schedule-daily.yml b/.github/workflows/schedule-daily.yml index 7c9a690963d..7867475a5e6 100644 --- a/.github/workflows/schedule-daily.yml +++ b/.github/workflows/schedule-daily.yml @@ -25,7 +25,7 @@ jobs: name: Cut RC runs-on: ubuntu-latest timeout-minutes: 30 - if: ${{ github.event_name == 'schedule' }} || ${{ (github.event_name == 'workflow_dispatch') && (github.ref == 'refs/heads/master') }} + if: github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/master') steps: - name: Checkout uses: actions/checkout@v4 @@ -50,7 +50,7 @@ jobs: image: ghcr.io/dfinity/ic-build@sha256:b7d870287df55b9972ed285fe1a9792cb81243523400d83d491f3ee149e8d47c timeout-minutes: 720 # 12 hours # TODO: disable in GitLab before enabling here - if: ${{ && false }} + if: ${{ false }} strategy: matrix: targets: ["//rs/crypto/...", "//rs/state_manager/..."] From 4b207f79bcb570d18a786501e1370f4cd5999f56 Mon Sep 17 00:00:00 2001 From: Marko Kosmerl Date: Fri, 28 Jun 2024 10:21:59 +0000 Subject: [PATCH 11/12] change --- .github/workflows-source/schedule-daily.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows-source/schedule-daily.yml b/.github/workflows-source/schedule-daily.yml index 61094be2cc0..e9ee02539a7 100644 --- a/.github/workflows-source/schedule-daily.yml +++ b/.github/workflows-source/schedule-daily.yml @@ -4,7 +4,6 @@ on: schedule: - cron: "0 1 * * *" workflow_dispatch: - pull_request: env: AWS_SHARED_CREDENTIALS_CONTENT: ${{ secrets.AWS_SHARED_CREDENTIALS_FILE }} From 15e86dc7b076c2bd9aa0d9d76beb552250f692d3 Mon Sep 17 00:00:00 2001 From: IDX GitHub Automation Date: Fri, 28 Jun 2024 10:22:20 +0000 Subject: [PATCH 12/12] IDX GitHub Automation --- .github/workflows/schedule-daily.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/schedule-daily.yml b/.github/workflows/schedule-daily.yml index 7867475a5e6..780dc163d4d 100644 --- a/.github/workflows/schedule-daily.yml +++ b/.github/workflows/schedule-daily.yml @@ -3,7 +3,6 @@ on: schedule: - cron: "0 1 * * *" workflow_dispatch: - pull_request: env: AWS_SHARED_CREDENTIALS_CONTENT: ${{ secrets.AWS_SHARED_CREDENTIALS_FILE }} BAZEL_STARTUP_ARGS: "--output_base=/var/tmp/bazel-output/"