-
Notifications
You must be signed in to change notification settings - Fork 204
104 lines (93 loc) · 2.35 KB
/
ci.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
name: Build
on:
pull_request:
paths:
- '**.c'
- '**.h'
- '**.in'
- '**.sh'
- '**.py'
- '**.java'
- .github/workflows/ci.yml
push:
jobs:
virtualsmartcard-macos:
runs-on: macos-11
steps:
- uses: actions/checkout@v2
- run: .github/build-virtualsmartcard.sh macos
- uses: actions/upload-artifact@v2
with:
name: virtualsmartcard-macos
path:
virtualsmartcard/virtualsmartcard*.dmg
virtualsmartcard-ubuntu:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- run: .github/build-virtualsmartcard.sh ubuntu
- uses: actions/upload-artifact@v2
with:
name: virtualsmartcard
path:
virtualsmartcard/virtualsmartcard*.tar.gz
ccid-ubuntu:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- run: .github/build-ccid.sh ubuntu
- uses: actions/upload-artifact@v2
with:
name: ccid-emulator
path:
ccid/ccid-emulator*.tar.gz
pcsc-relay-macos:
runs-on: macos-11
steps:
- uses: actions/checkout@v2
- run: .github/build-pcsc-relay.sh macos
pcsc-relay-ubuntu:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- run: .github/build-pcsc-relay.sh ubuntu
- uses: actions/upload-artifact@v2
with:
name: pcsc-relay
path:
pcsc-relay/pcsc-relay*.tar.gz
# pcsc-relay-mingw-32:
# runs-on: ubuntu-20.04
# steps:
# - uses: actions/checkout@v2
# - run: .github/build-pcsc-relay.sh mingw-32
pcsc-relay-mingw-64:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- run: .github/build-pcsc-relay.sh mingw-64
- uses: actions/upload-artifact@v2
with:
name: pcsc-relay-mingw-64
path:
pcsc-relay/src/pcsc-relay.exe
remote-reader-ubuntu:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- run: .github/build-remote-reader.sh
- uses: actions/upload-artifact@v2
with:
name: remote-reader
path:
remote-reader/app/build/outputs/apk
ACardEmulator-ubuntu:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- run: .github/build-ACardEmulator.sh
- uses: actions/upload-artifact@v2
with:
name: ACardEmulator
path:
ACardEmulator/app/build/outputs/apk