-
Notifications
You must be signed in to change notification settings - Fork 56
177 lines (173 loc) · 6.12 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
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
push:
branches:
- master
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
pull_request:
branches:
- master
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
arm64-manylinux228-py312:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dbhi/qus/action@main
- name: Build
# Use Docker Command Directly to take more control over the platform
run: >
docker run \
--env PYGMO_BUILD_TYPE=Python312 \
--env GITHUB_WORKSPACE=${GITHUB_WORKSPACE} \
--env GITHUB_REF=${GITHUB_REF} \
--env TWINE_USERNAME=${{ secrets.TWINE_USERNAME }} \
--env TWINE_PASSWORD=${{ secrets.TWINE_PASSWORD }} \
--volume ${GITHUB_WORKSPACE}:${GITHUB_WORKSPACE} \
--workdir ${GITHUB_WORKSPACE} \
--platform linux/arm64 \
pagmo2/manylinux228_aarch64_with_deps:latest \
bash tools/gha_manylinux.sh
arm64-manylinux228-py311:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dbhi/qus/action@main
- name: Build
# Use Docker Command Directly to take more control over the platform
run: >
docker run \
--env PYGMO_BUILD_TYPE=Python311 \
--env GITHUB_WORKSPACE=${GITHUB_WORKSPACE} \
--env GITHUB_REF=${GITHUB_REF} \
--env TWINE_USERNAME=${{ secrets.TWINE_USERNAME }} \
--env TWINE_PASSWORD=${{ secrets.TWINE_PASSWORD }} \
--volume ${GITHUB_WORKSPACE}:${GITHUB_WORKSPACE} \
--workdir ${GITHUB_WORKSPACE} \
--platform linux/arm64 \
pagmo2/manylinux228_aarch64_with_deps:latest \
bash tools/gha_manylinux.sh
arm64-manylinux228-py310:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dbhi/qus/action@main
- name: Build
# Use Docker Command Directly to take more control over the platform
run: >
docker run \
--env PYGMO_BUILD_TYPE=Python310 \
--env GITHUB_WORKSPACE=${GITHUB_WORKSPACE} \
--env GITHUB_REF=${GITHUB_REF} \
--env TWINE_USERNAME=${{ secrets.TWINE_USERNAME }} \
--env TWINE_PASSWORD=${{ secrets.TWINE_PASSWORD }} \
--volume ${GITHUB_WORKSPACE}:${GITHUB_WORKSPACE} \
--workdir ${GITHUB_WORKSPACE} \
--platform linux/arm64 \
pagmo2/manylinux228_aarch64_with_deps:latest \
bash tools/gha_manylinux.sh
arm64-manylinux228-py39:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dbhi/qus/action@main
- name: Build
# Use Docker Command Directly to take more control over the platform
run: >
docker run \
--env PYGMO_BUILD_TYPE=Python39 \
--env GITHUB_WORKSPACE=${GITHUB_WORKSPACE} \
--env GITHUB_REF=${GITHUB_REF} \
--env TWINE_USERNAME=${{ secrets.TWINE_USERNAME }} \
--env TWINE_PASSWORD=${{ secrets.TWINE_PASSWORD }} \
--volume ${GITHUB_WORKSPACE}:${GITHUB_WORKSPACE} \
--workdir ${GITHUB_WORKSPACE} \
--platform linux/arm64 \
pagmo2/manylinux228_aarch64_with_deps:latest \
bash tools/gha_manylinux.sh
amd64-manylinux228-py312:
runs-on: ubuntu-latest
container:
image: pagmo2/manylinux228_x86_64_with_deps:latest
env:
PYGMO_BUILD_TYPE: "Python312"
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
steps:
- uses: actions/checkout@v2
- name: Build
run: bash tools/gha_manylinux.sh
amd64-manylinux228-py311:
runs-on: ubuntu-latest
container:
image: pagmo2/manylinux228_x86_64_with_deps:latest
env:
PYGMO_BUILD_TYPE: "Python311"
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
steps:
- uses: actions/checkout@v2
- name: Build
run: bash tools/gha_manylinux.sh
amd64-manylinux228-py310:
runs-on: ubuntu-latest
container:
image: pagmo2/manylinux228_x86_64_with_deps:latest
env:
PYGMO_BUILD_TYPE: "Python310"
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
steps:
- uses: actions/checkout@v2
- name: Build
run: bash tools/gha_manylinux.sh
amd64-manylinux228-py39:
runs-on: ubuntu-latest
container:
image: pagmo2/manylinux228_x86_64_with_deps:latest
env:
PYGMO_BUILD_TYPE: "Python39"
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
steps:
- uses: actions/checkout@v2
- name: Build
run: bash tools/gha_manylinux.sh
macos-10_15-py310:
runs-on: macos-10.15
steps:
- uses: actions/checkout@v2
- name: Build
run: bash tools/gha_macos-10.15-py310.sh
windows-2019-py311:
runs-on: windows-2019
steps:
- uses: actions/checkout@v2
- name: Add msbuild to PATH
uses: microsoft/[email protected]
- uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
python-version: 3.11
channels: conda-forge
channel-priority: strict
- name: Build
run: .\tools\gha_windows.ps1
shell: powershell
build-and-deploydocs:
if: ${{ github.event_name }} == 'push'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install and Build 🔧
run: bash tools/gha_deploydocs.sh
- name: Upload to github pages 🚀
if: ${{ github.event_name == 'push' }}
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: doc/_build/html # The folder the action should deploy.