@@ -3,7 +3,7 @@ name: CI/CD
33on : [push, pull_request]
44
55jobs :
6- linux :
6+ build- linux :
77 runs-on : ubuntu-latest
88 timeout-minutes : 15
99 strategy :
@@ -33,30 +33,28 @@ jobs:
3333 sudo apt-get update
3434 sudo apt-get install cvs
3535
36- - name : Run unit tests
37- run : |
38- git config --global init.defaultBranch master # keep the old name
39- git config --global protocol.file.allow always # roll back CVE-2022-39253
40- eatmydata ./test/run-tests.sh -c xml
36+ # - name: Run unit tests
37+ # run: |
38+ # git config --global init.defaultBranch master # keep the old name
39+ # git config --global protocol.file.allow always # roll back CVE-2022-39253
40+ # eatmydata ./test/run-tests.sh -c xml
4141
4242 - name : Build Python package
4343 run : |
44- python3 setup.py sdist bdist_wheel --plat-name manylinux1_x86_64
44+ python3 setup.py bdist_wheel --plat-name manylinux1_x86_64
4545
4646 - name : Upload coverage to Codecov
4747 # Coverage is not complete on Python <3.7 (see pym/bob/utils.py)
4848 if : matrix.python-version != '3.6'
4949 uses : codecov/codecov-action@v2
5050
51- - name : Publish package
52- if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
53- uses : pypa/gh-action-pypi-publish@release/v1
51+ - name : Store the binary wheel
52+ uses : actions/upload-artifact@v3
5453 with :
55- user : __token__
56- password : ${{ secrets.PYPI_API_TOKEN }}
57- skip_existing : true
54+ name : python-package-distributions
55+ path : dist
5856
59- windows :
57+ build- windows :
6058 runs-on : windows-latest
6159 timeout-minutes : 20
6260 steps :
@@ -83,21 +81,67 @@ jobs:
8381 python -m pip install --upgrade pip
8482 pip install PyYAML coverage schema python-magic pyparsing sphinx wheel
8583
86- - name : Run unit tests
87- run : |
88- git config --global init.defaultBranch master # keep the old name
89- git config --global protocol.file.allow always # roll back CVE-2022-39253
90- $env:PATH = "$env:JAVA_HOME_11_X64\bin;$env:PATH;C:\msys64\usr\bin"
91- $env:JAVA_HOME = "$env:JAVA_HOME_11_X64"
92- bash ./test/run-tests.sh -c xml
84+ # - name: Run unit tests
85+ # run: |
86+ # git config --global init.defaultBranch master # keep the old name
87+ # git config --global protocol.file.allow always # roll back CVE-2022-39253
88+ # $env:PATH = "$env:JAVA_HOME_11_X64\bin;$env:PATH;C:\msys64\usr\bin"
89+ # $env:JAVA_HOME = "$env:JAVA_HOME_11_X64"
90+ # bash ./test/run-tests.sh -c xml
9391
9492 - name : Build Python package
9593 run : |
96- python3 setup.py sdist bdist_wheel
94+ python3 setup.py bdist_wheel
9795
9896 - name : Upload coverage to Codecov
9997 uses : codecov/codecov-action@v2
10098
99+ - name : Store the binary wheel
100+ uses : actions/upload-artifact@v3
101+ with :
102+ name : python-package-distributions
103+ path : dist
104+
105+ build-sdist :
106+ runs-on : ubuntu-latest
107+ timeout-minutes : 5
108+ steps :
109+ - name : Checkout
110+ uses : actions/checkout@v2
111+
112+ - name : Set up Python 3.10
113+ uses : actions/setup-python@v2
114+ with :
115+ python-version : " 3.10"
116+
117+ - name : Build Python package
118+ run : |
119+ python3 setup.py sdist
120+
121+ - name : Store the source distribution
122+ uses : actions/upload-artifact@v3
123+ with :
124+ name : python-package-distributions
125+ path : dist
126+
127+ publish :
128+ runs-on : ubuntu-latest
129+ timeout-minutes : 5
130+ needs :
131+ - build-linux
132+ - build-windows
133+ - build-sdist
134+ steps :
135+ - name : Download all the dists
136+ uses : actions/download-artifact@v3
137+ with :
138+ name : python-package-distributions
139+ path : dist/
140+
141+ - name : Debug
142+ run : |
143+ ls -R .
144+
101145 - name : Publish package
102146 if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
103147 uses : pypa/gh-action-pypi-publish@release/v1
0 commit comments