-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (38 loc) · 1.06 KB
/
ci.yaml
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
name: CI
on:
- push
- pull_request
jobs:
ingest:
# strategy:
# matrix:
# runtime: [docker, conda]
# permissions:
# id-token: write
name: nextstrain build ingest
uses: ./.github/workflows/pathogen-repo-ci.yaml
with:
build-target: ingest
build-args: --config viruses="hku1"
phylogenetic:
name: nextstrain build phylogenetic
runs-on: ubuntu-latest
needs: ingest
steps:
- name: download
uses: actions/download-artifact@v4
with:
# hard-coding this for the moment...
name: outputs-conda
#path: ${{ github.repository }}/outputs-conda.zip
- name: DEBUG
run: ls -R
- name: expand archive
run: |
unzip -of ${{ github.repository }}/outputs-conda.zip 'results/*' -d ingest
rm ${{ github.repository }}/outputs-conda.zip
- name: nextstrain build phylogenetic
uses: ./.github/workflows/pathogen-repo-ci.yaml
with:
build-target: phylogenetic
build-args: --config viruses="hku1"