-
Notifications
You must be signed in to change notification settings - Fork 66
53 lines (49 loc) · 1.51 KB
/
make_ubuntu.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
name: make test ubuntu-latest
on:
push:
branches: [ main ]
jobs:
build-ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: make
run: make
working-directory: ./src
- name: perl cmdline_test.pl
run: perl cmdline_test.pl
working-directory: ./test
- name: perl oligotm_test.pl
run: perl oligotm_test.pl
working-directory: ./test
- name: perl dpal_test.pl
run: perl dpal_test.pl
working-directory: ./test
- name: perl thal_test.pl
run: perl thal_test.pl
working-directory: ./test
- name: perl masker_test.pl
run: perl masker_test.pl
working-directory: ./test
- name: perl a3test.pl --action
run: perl a3test.pl --action
working-directory: ./test
- name: perl p3test.pl --action
run: perl p3test.pl --action
working-directory: ./test
- name: mkdir results
run: mkdir results
- name: tar -zcvf results/build-ubuntu-src.tar.gz ./src
run: tar -zcvf results/build-ubuntu-src.tar.gz ./src
- name: tar -zcvf results/build-ubuntu-test.tar.gz ./test
run: tar -zcvf results/build-ubuntu-test.tar.gz ./test
- name: Upload src folder for job 1
uses: actions/upload-artifact@v4
with:
name: build-ubuntu-src.tar.gz
path: results/build-ubuntu-src.tar.gz
- name: Upload test folder for job 1
uses: actions/upload-artifact@v4
with:
name: build-ubuntu-test.tar.gz
path: results/build-ubuntu-test.tar.gz