Skip to content

Commit

Permalink
WIP: debug job outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
soonum committed May 16, 2024
1 parent 7098b1b commit 7a34f59
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/aws_tfhe_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

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 @@ -99,6 +99,7 @@ pub(crate) fn random_integer() -> u32 {
rng.gen::<u32>()
}
// 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.
Expand Down

0 comments on commit 7a34f59

Please sign in to comment.