-
Notifications
You must be signed in to change notification settings - Fork 66
50 lines (46 loc) · 1.62 KB
/
make_windows.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
name: make test windows-latest
on:
push:
branches: [ main ]
jobs:
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: make TESTOPTS=--windows
run: make TESTOPTS=--windows
working-directory: ./src
- name: perl cmdline_test.pl --windows
run: perl cmdline_test.pl --windows
working-directory: ./test
- name: perl oligotm_test.pl --windows
run: perl oligotm_test.pl --windows
working-directory: ./test
- name: perl dpal_test.pl --windows
run: perl dpal_test.pl --windows
working-directory: ./test
- name: perl thal_test.pl --windows
run: perl thal_test.pl --windows
working-directory: ./test
- name: perl a3test.pl --windows --action
run: perl a3test.pl --windows --action
working-directory: ./test
- name: perl p3test.pl --windows --action
run: perl p3test.pl --windows --action
working-directory: ./test
- name: mkdir results
run: mkdir results
- name: powershell Compress-Archive src results/build-windows-src.zip
run: powershell Compress-Archive src results/build-windows-src.zip
- name: powershell Compress-Archive test results/build-windows-test.zip
run: powershell Compress-Archive test results/build-windows-test.zip
- name: Upload src folder for job 1
uses: actions/upload-artifact@v4
with:
name: build-windows-src.zip
path: results/build-windows-src.zip
- name: Upload test folder for job 1
uses: actions/upload-artifact@v4
with:
name: build-windows-test.zip
path: results/build-windows-test.zip