Skip to content

Commit

Permalink
Merge pull request #361 from privacybydesign/gh-actions-fix-server-in…
Browse files Browse the repository at this point in the history
…tegration-test

Test: ensure integration-test-serverside uses testdata from current c…
  • Loading branch information
ivard authored Nov 29, 2023
2 parents 2e23adb + eccd429 commit 5f67be4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/actions/integration-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,10 @@ runs:
ref: ${{ inputs.test-ref }}
path: irmago_test_checkout

- name: Use testdata from current checkout
run: cp -R ./testdata ./irmago_test_checkout
shell: bash

- name: Run integration tests
working-directory: irmago_test_checkout
env:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/status-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,11 @@ jobs:
keyshare-server-artifact: irma-linux-amd64 # Current build

analyze:
needs: build
# Add integration tests as dependencies to make sure that PRs are not merged if they fail.
needs:
- build
- integration-test-clientside
- integration-test-serverside
runs-on: ubuntu-latest
permissions:
actions: read
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Internal
- Fixed issue with expired `irma-demo.MijnOverheid` key in testdata
- Always use testdata of current branch for integration-test jobs in GitHub Actions workflow

## [0.14.2] - 2023-10-25
### Fixed
Expand Down

0 comments on commit 5f67be4

Please sign in to comment.