-
-
Notifications
You must be signed in to change notification settings - Fork 7
44 lines (41 loc) · 1.35 KB
/
misc.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Misc
on:
pull_request:
push:
tags:
- 'v*'
branches: [ main ]
workflow_dispatch:
concurrency:
group: misc-${{ github.ref }}
cancel-in-progress: true
jobs:
integration:
name: Integration tests
# If starting the example fails at runtime the integration test will
# be stuck. Try to limit the damage. The value "10" selected arbitrarily.
timeout-minutes: 10
strategy:
matrix:
include:
- os: windows-latest
script: ".\\tests\\sign-and-verify-win.bat"
- os: ubuntu-latest
script: ./tests/sign-and-verify.sh
- os: macos-latest
script: ./tests/sign-and-verify.sh
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: taiki-e/install-action@just
- run: just install-packages
# If the example doesn't compile the integration test will
# be stuck. Check for compilation issues earlier to abort the job
- name: Check if the key-storage example compiles
run: cargo check --example key-storage
- name: Check if the ssh-agent-client example compiles
run: cargo check --example ssh-agent-client
- name: Check if the ssh-agent-client-blocking example compiles
run: cargo check --example ssh-agent-client-blocking
- name: Run integration tests
run: ${{ matrix.script }}