-
Notifications
You must be signed in to change notification settings - Fork 109
55 lines (35 loc) · 1.03 KB
/
main.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
name: CI
on: [push]
jobs:
cache-submodule:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: env/setup.sh
- uses: ./.github/actions/submodule
build-win-snd:
needs: [cache-submodule]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: env/setup.sh
- uses: ./.github/actions/submodule
- run: DEBIAN_FRONTEND=noninteractive sudo -EH apt-get -y install mingw-w64
- run: make -j3 -C eth-sender target=win
- uses: actions/upload-artifact@v4
with:
name: cj-win
path: eth-sender/out-win/x86_64/cj.exe
build-win-cli:
needs: [cache-submodule]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: env/setup.sh
- uses: ./.github/actions/submodule
- run: DEBIAN_FRONTEND=noninteractive sudo -EH apt-get -y install mingw-w64
- run: make -j3 -C cli-shared target=win
- uses: actions/upload-artifact@v4
with:
name: orchidcd-win
path: cli-shared/out-win/x86_64/orchidcd.exe