-
Notifications
You must be signed in to change notification settings - Fork 0
62 lines (51 loc) · 1.37 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
53
54
55
56
57
58
59
60
61
name: GitHub Actions CI
on:
push:
branches: [ master, develop, main]
paths-ignore:
- '**.md'
workflow_dispatch:
jobs:
########################################################################################
make:
name: Make
strategy:
fail-fast: false
matrix:
machine: [ubuntu-latest, macOS-12]
runs-on: ['${{ matrix.machine }}']
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: make
run: |
g++ --version
make -j CXX=g++-12
- name: tar artifacts
run: tar -cvf lz-ani.tar ./lz-ani ./test
- uses: actions/upload-artifact@v4
with:
name: executable-artifact-${{ matrix.machine }}
path: ./lz-ani.tar
########################################################################################
vir61:
needs: make
name: Virus data
strategy:
fail-fast: false
matrix:
machine: [ubuntu-latest, macOS-12]
runs-on: ['${{ matrix.machine }}']
steps:
- uses: actions/download-artifact@v4
with:
name: executable-artifact-${{ matrix.machine }}
path: ./
- name: untar artifacts
run: |
tar -xf lz-ani.tar
- name: build
run: |
./lz-ani all2all --in-dir ./test/vir61 --out ani.tsv
cmp ani.tsv ./test/vir61.ani.tsv