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 f65cc04
Show file tree
Hide file tree
Showing 3 changed files with 22 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
1 change: 1 addition & 0 deletions tfhe/src/boolean/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ pub(crate) fn random_integer() -> u32 {
// generate a random u32
rng.gen::<u32>()
}
// A simple change

/// Generate a couple of client and server keys with the default cryptographic parameters:
/// `DEFAULT_PARAMETERS`.
Expand Down
2 changes: 2 additions & 0 deletions tfhe/src/c_api/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@ pub mod high_level_api;
#[cfg(feature = "shortint-c-api")]
pub mod shortint;
pub(crate) mod utils;

// A simple change

0 comments on commit f65cc04

Please sign in to comment.