diff --git a/.github/workflows/aws_tfhe_tests.yml b/.github/workflows/aws_tfhe_tests.yml index 192dba7d88..4669101734 100644 --- a/.github/workflows/aws_tfhe_tests.yml +++ b/.github/workflows/aws_tfhe_tests.yml @@ -112,10 +112,17 @@ jobs: (github.event_name == 'pull_request' && needs.setup-instance.result != 'skipped') needs: [ should-run, setup-instance ] concurrency: - group: ${{ github.workflow }}_${{ github.ref }} + group: ${{ github.workflow }}_${{github.event_name}}_${{ github.ref }} cancel-in-progress: true runs-on: ${{ needs.setup-instance.outputs.runner-name }} steps: + # DEBUG + - name: Echo output values + run: | + echo "is_pull_request: ${{ env.IS_PULL_REQUEST }}" + echo "cprng_test: ${{ needs.should-run.outputs.csprng_test == 'true' }}" + echo "boolean_test: ${{ needs.should-run.outputs.boolean_test == 'true' }}" + - name: Checkout tfhe-rs uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b diff --git a/tfhe/src/boolean/mod.rs b/tfhe/src/boolean/mod.rs index b801f1f597..c794751ef6 100644 --- a/tfhe/src/boolean/mod.rs +++ b/tfhe/src/boolean/mod.rs @@ -99,6 +99,7 @@ pub(crate) fn random_integer() -> u32 { rng.gen::() } // Simple change to test triggering +// Second changes /// Generate a couple of client and server keys with the default cryptographic parameters: /// `DEFAULT_PARAMETERS`. /// The client is the one generating both keys.