-
Notifications
You must be signed in to change notification settings - Fork 14
47 lines (39 loc) · 985 Bytes
/
ci.yaml
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
45
46
47
name: ci
on:
push:
branches:
- 'main'
pull_request: {}
# allow manual runs:
workflow_dispatch: {}
jobs:
build:
runs-on: ubuntu-latest
container:
image: ghcr.io/tillitis/tkey-builder:4
steps:
- name: checkout
uses: actions/checkout@v4
with:
# fetch-depth: 0
persist-credentials: false
- name: fix
# https://github.com/actions/runner-images/issues/6775
run: |
git config --global --add safe.directory "$GITHUB_WORKSPACE"
- name: make
run: make tkey-ssh-agent -j
- name: make windows
run: make windows -j
- name: check for SPDX tags
run: ./tools/spdx-ensure
- name: archive
uses: actions/upload-artifact@v4
with:
name: tkey-ssh-agent
retention-days: 2
path: |
license
tkey-ssh-agent
tkey-ssh-agent.exe
tkey-ssh-agent-tray.exe