Skip to content

Commit

Permalink
WIP: make simple changes to test the behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
soonum committed May 16, 2024
1 parent 294ca31 commit 608ca57
Showing 1 changed file with 19 additions and 6 deletions.
25 changes: 19 additions & 6 deletions .github/workflows/aws_tfhe_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ on:

jobs:
file-change:
if: ${{ github.event_name == 'pull_request' }} # FIXME tester le cas où on est en schedule pour le `needs.`
if: ${{ github.event_name == 'pull_request' }}
runs-on: ubuntu-latest
permissions:
pull-requests: write
Expand All @@ -36,7 +36,7 @@ jobs:
csprng_test: ${{ steps.changed-files.outputs.csprng_any_changed }}
apps_test: ${{ steps.changed-files.outputs.apps_any_changed }}
user_docs_test: ${{ steps.changed-files.outputs.user_docs_any_changed }}
any_file_changed: ${{ steps.changed-files.outputs.any_changed }}
any_file_changed: ${{ steps.aggregated-changes.outputs.any_changed }}
steps:
- name: Checkout tfhe-rs
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b
Expand Down Expand Up @@ -71,12 +71,25 @@ jobs:
- tfhe/docs/**
- README.md
# TODO Ajouter une étape qui aggrège tous les résultats de "any_changed" en utilisant un any()
- name: Aggregate file changes
id: aggregated-changes
if: ( steps.changed-files.outputs.core_crypto_any_changed == 'true' ||
steps.changed-files.outputs.boolean_any_changed == 'true' ||
steps.changed-files.outputs.shortint_any_changed == 'true' ||
steps.changed-files.outputs.c_api_any_changed == 'true' ||
steps.changed-files.outputs.high_level_api_any_changed == 'true' ||
steps.changed-files.outputs.examples_any_changed == 'true' ||
steps.changed-files.outputs.zk_pok_any_changed == 'true' ||
steps.changed-files.outputs.csprng_any_changed == 'true' ||
steps.changed-files.outputs.apps_any_changed == 'true' ||
steps.changed-files.outputs.user_docs_any_changed == 'true')
run: |
echo "any_changed=true" >> "$GITHUB_OUTPUT"
setup-instance:
name: Setup instance (cpu-tests)
#if: ${{ github.event_name == 'pull_request' && needs.file-change.outputs.any_file_changed == 'true' }}
###############if: ${{ github.event_name == 'workflow_dispatch' || contains(github.event.label.name, 'approved') }}
if: ${{ github.event_name != 'pull_request' ||
(github.event_name == 'pull_request' && needs.file-change.outputs.any_file_changed == 'true') }}
needs: file-change
runs-on: ubuntu-latest
outputs:
Expand All @@ -95,7 +108,7 @@ jobs:

cpu-tests:
name: CPU tests
needs: setup-instance
needs: [ file-change, setup-instance ]
concurrency:
group: ${{ github.workflow }}_${{ github.ref }}
cancel-in-progress: true
Expand Down

0 comments on commit 608ca57

Please sign in to comment.