-
-
Notifications
You must be signed in to change notification settings - Fork 10
162 lines (133 loc) · 5.13 KB
/
deploy.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
name: Build and Deploy TAF
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
build_and_upload_wheel:
strategy:
matrix:
# python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.10']
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: |
pip install --upgrade pip setuptools wheel
- name: Install swig
run: |
sudo apt-get update
sudo apt-get install libhdf5-serial-dev zlib1g-dev libatlas-base-dev lcov swig3.0 libpcsclite-dev
mkdir -p ~/bin/ && ln -s /usr/bin/swig3.0 ~/bin/swig && export PATH=~/bin/:$PATH
- name: Install and build TAF
run: |
pip install .[yubikey]
python setup.py sdist bdist_wheel clean --all
- name: Install publishing dependencies
run: |
pip install packaging
pip install twine==3.8.0
- name: Upload to TestPyPi
# if: startsWith(github.ref, 'refs/tags/v')
run: |
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
env:
TWINE_USERNAME: ${{ secrets.TEST_PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.TEST_PYPI_PASSWORD }}
# - name: Upload wheels to PyPI
# if: startsWith(github.ref, 'refs/tags/v')
# run: |
# python -m pip install twine
# twine check dist/*
# twine upload --skip-existing dist/* -u ${{ secrets.PYPI_USERNAME }} -p ${{ secrets.PYPI_PASSWORD }}
# env:
# PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }}
# PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
# displayName: "Upload wheels"
# build-and-test-executables:
# needs: run-tests
# strategy:
# matrix:
# os: [ubuntu-latest, windows-latest, macos-latest]
# runs-on: ${{ matrix.os }}
# if: ${{ needs.run-tests.result == 'success' }}
# steps:
# - name: Checkout Repository
# uses: actions/checkout@v3
# - name: Set up Python
# uses: actions/setup-python@v2
# with:
# python-version: '3.10'
# - name: Upgrade pip windows
# if: matrix.os == 'windows-latest'
# run: |
# python -m pip install --upgrade pip setuptools wheel
# - name: Upgrade pip
# if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'
# run: |
# pip install --upgrade pip setuptools wheel
# - name: Install Linux dependencies
# if: matrix.os == 'ubuntu-latest'
# run: |
# sudo apt-get update
# sudo apt-get install libhdf5-serial-dev zlib1g-dev libatlas-base-dev lcov swig3.0 libpcsclite-dev
# mkdir -p ~/bin/ && ln -s /usr/bin/swig3.0 ~/bin/swig && export PATH=~/bin/:$PATH
# - name: Install Windows dependencies
# if: matrix.os == 'windows-latest'
# run: |
# choco install swig
# - name: Install macOS dependencies
# if: matrix.os == 'macos-latest'
# run: |
# brew install swig
# - name: Install dependencies
# run: |
# pip install .[yubikey]
# pip install pyinstaller
# - name: Build and test standalone executable (Linux)
# if: matrix.os == 'ubuntu-latest'
# run: |
# pyinstaller --onefile --name taf -y taf/tools/cli/taf.py
# chmod +x dist/taf
# ./dist/taf --help | grep "TAF Command Line Interface" || { echo "Error: Expected text not found in the executable output"; exit 1; }
# - name: Build and test standalone executable (Windows)
# if: matrix.os == 'windows-latest'
# run: |
# pyinstaller --onefile --name taf.exe -y taf/tools/cli/taf.py
# ./dist/taf.exe --help | Select-String "TAF Command Line Interface" -quiet
# - name: Build and test standalone executable (macOS)
# if: matrix.os == 'macos-latest'
# run: |
# pyinstaller --onefile --name taf -y taf/tools/cli/taf.py
# ./dist/taf --help | grep "TAF Command Line Interface" || { echo "Error: Expected text not found in the executable output"; exit 1; }
# - name: Upload standalone executable (Linux)
# if: matrix.os == 'ubuntu-latest'
# uses: actions/upload-artifact@v3
# with:
# name: taf-executable-linux
# path: dist/taf
# - name: Upload standalone executable (Windows)
# if: matrix.os == 'windows-latest'
# uses: actions/upload-artifact@v3
# with:
# name: taf-executable-windows
# path: dist/taf.exe
# - name: Upload standalone executable (macOS)
# if: matrix.os == 'macos-latest'
# uses: actions/upload-artifact@v3
# with:
# name: taf-executable-macos
# path: dist/taf