Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,16 +51,24 @@ jobs:
with:
go-version: stable
- name: Install IRMA server
env:
IRMAGO_VERSION: v0.19.2
run: |
mkdir -p "$RUNNER_TEMP/irma-bin"
echo "$RUNNER_TEMP/irma-bin" >> "$GITHUB_PATH"
curl -fsSL https://github.com/privacybydesign/irmago/releases/download/v0.8.0/irma-master-linux-amd64 \
curl -fsSL "https://github.com/privacybydesign/irmago/releases/download/${IRMAGO_VERSION}/irma-linux-amd64" \
-o "$RUNNER_TEMP/irma-bin/irma"
chmod +x "$RUNNER_TEMP/irma-bin/irma"
- name: Set up IRMA configuration
# Pass explicit scheme URLs rather than relying on the binary's
# compiled-in defaults: irmago < ~v0.13 pointed at the now-defunct
# privacybydesign.foundation host, and pinning the URL here keeps
# CI independent of any future default-URL drift.
run: |
mkdir -p temp_testing/client temp_testing/irma_configuration
irma scheme download temp_testing/irma_configuration
irma scheme download temp_testing/irma_configuration \
https://schemes.yivi.app/irma-demo \
https://schemes.yivi.app/pbdf
- name: Build test client emulator
working-directory: test_tools/client_emulator
run: go build
Expand Down
Loading