File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 7
7
runs-on : ubuntu-latest
8
8
strategy :
9
9
matrix :
10
- python-version : ["3.8 "]
10
+ python-version : ["3.9 "]
11
11
12
12
steps :
13
13
- name : Checkout
20
20
python-version : ${{ matrix.python-version }}
21
21
- name : Build PEX file
22
22
run : |
23
+ pip3 install wheel glob2
23
24
pip3 install -r requirements/test.txt
24
25
pex --python-shebang='/usr/bin/env python3' --disable-cache . -r requirements/base.txt --python=python${{ matrix.python-version }} -c elastic-blast -o elastic-blast
25
26
./elastic-blast --version
38
39
runs-on : ubuntu-latest
39
40
strategy :
40
41
matrix :
41
- python-version : ["3.8 ", "3.9 ", "3.10 "]
42
+ python-version : ["3.9 ", "3.10 ", "3.11 "]
42
43
43
44
steps :
44
45
52
53
python-version : ${{ matrix.python-version }}
53
54
- name : Build PEX file
54
55
run : |
56
+ pip3 install wheel glob2
55
57
pip3 install -r requirements/test.txt
56
58
pex --python-shebang='/usr/bin/env python3' --disable-cache . -r requirements/base.txt --python=python${{ matrix.python-version }} -c elastic-blast -o elastic-blast${{ matrix.python-version }}
57
59
./elastic-blast${{ matrix.python-version }} --version
78
80
- name : Create tarball
79
81
run : |
80
82
tar axvf elastic-blast-no-suffix/elastic-blast-no-suffix.tar.gz
81
- tar axvf elastic-blast-3.8/elastic-blast3.8.tar.gz
82
83
tar axvf elastic-blast-3.9/elastic-blast3.9.tar.gz
83
84
tar axvf elastic-blast-3.10/elastic-blast3.10.tar.gz
85
+ tar axvf elastic-blast-3.11/elastic-blast3.11.tar.gz
84
86
rm -fvr elastic-blast-*.tar.gz
85
87
tar -czvf ~/elastic-blast.tar.gz elastic-blast elastic-blast*md5 elastic-blast3.*
86
88
- name : ' Upload Artifact'
You can’t perform that action at this time.
0 commit comments