Skip to content

Commit

Permalink
fixup! Fix fail-fast logic for downstream trigger
Browse files Browse the repository at this point in the history
Signed-off-by: Spencer Wilson <spencer.wilson@uwaterloo.ca>
  • Loading branch information
SWilson4 committed Sep 4, 2024
1 parent 00975c5 commit a0ef386
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/downstream-basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Trigger OQS-BoringSSL CI
if: !cancelled() # run all steps independent of failures
if: ${{ !cancelled }} # run all steps independent of failures
run: |
curl --silent \
--write-out "\n%{response_code}\n" \
Expand All @@ -23,7 +23,7 @@ jobs:
https://github.com/gitapi/repos/open-quantum-safe/boringssl/dispatches | tee curl_out \
&& grep -q "204" curl_out
- name: Trigger OQS-OpenSSH CI
if: !cancelled() # run all steps independent of failures
if: ${{ !cancelled }} # run all steps independent of failures
run: |
curl --silent \
--write-out "\n%{response_code}\n" \
Expand All @@ -35,7 +35,7 @@ jobs:
https://github.com/gitapi/repos/open-quantum-safe/openssh/actions/workflows/ubuntu.yaml/dispatches | tee curl_out \
&& grep -q "204" curl_out
- name: Trigger oqs-provider CI
if: !cancelled() # run all steps independent of failures
if: ${{ !cancelled }} # run all steps independent of failures
run: |
curl --silent \
--write-out "\n%{response_code}\n" \
Expand All @@ -46,7 +46,7 @@ jobs:
https://circleci.com/api/v2/project/gh/open-quantum-safe/oqs-provider/pipeline | tee curl_out \
&& grep -q "201" curl_out
- name: Trigger liboqs-cpp CI
if: !cancelled() # run all steps independent of failures
if: ${{ !cancelled }} # run all steps independent of failures
run: |
curl --silent \
--write-out "\n%{response_code}\n" \
Expand All @@ -58,7 +58,7 @@ jobs:
https://github.com/gitapi/repos/open-quantum-safe/liboqs-cpp/dispatches | tee curl_out \
&& grep -q "204" curl_out
- name: Trigger liboqs-go CI
if: !cancelled() # run all steps independent of failures
if: ${{ !cancelled }} # run all steps independent of failures
run: |
curl --silent \
--write-out "\n%{response_code}\n" \
Expand All @@ -70,7 +70,7 @@ jobs:
https://github.com/gitapi/repos/open-quantum-safe/liboqs-go/dispatches | tee curl_out \
&& grep -q "204" curl_out
- name: Trigger liboqs-python CI
if: !cancelled() # run all steps independent of failures
if: ${{ !cancelled }} # run all steps independent of failures
run: |
curl --silent \
--write-out "\n%{response_code}\n" \
Expand Down

0 comments on commit a0ef386

Please sign in to comment.