18
18
19
19
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
20
20
jobs :
21
- arm64-manylinux228-py311 :
21
+ arm64-manylinux228-py312 :
22
22
runs-on : ubuntu-latest
23
23
steps :
24
24
- uses : actions/checkout@v2
27
27
# Use Docker Command Directly to take more control over the platform
28
28
run : >
29
29
docker run \
30
- --env PYGMO_BUILD_TYPE=Python311 \
30
+ --env PYGMO_BUILD_TYPE=Python312 \
31
31
--env GITHUB_WORKSPACE=${GITHUB_WORKSPACE} \
32
32
--env GITHUB_REF=${GITHUB_REF} \
33
33
--env TWINE_USERNAME=${{ secrets.TWINE_USERNAME }} \
37
37
--platform linux/arm64 \
38
38
pagmo2/manylinux228_aarch64_with_deps:latest \
39
39
bash tools/gha_manylinux.sh
40
- arm64-manylinux228-py310 :
40
+ arm64-manylinux228-py311 :
41
41
runs-on : ubuntu-latest
42
42
steps :
43
43
- uses : actions/checkout@v2
46
46
# Use Docker Command Directly to take more control over the platform
47
47
run : >
48
48
docker run \
49
- --env PYGMO_BUILD_TYPE=Python310 \
49
+ --env PYGMO_BUILD_TYPE=Python311 \
50
50
--env GITHUB_WORKSPACE=${GITHUB_WORKSPACE} \
51
51
--env GITHUB_REF=${GITHUB_REF} \
52
52
--env TWINE_USERNAME=${{ secrets.TWINE_USERNAME }} \
56
56
--platform linux/arm64 \
57
57
pagmo2/manylinux228_aarch64_with_deps:latest \
58
58
bash tools/gha_manylinux.sh
59
- arm64-manylinux228-py39 :
59
+ arm64-manylinux228-py310 :
60
60
runs-on : ubuntu-latest
61
61
steps :
62
62
- uses : actions/checkout@v2
65
65
# Use Docker Command Directly to take more control over the platform
66
66
run : >
67
67
docker run \
68
- --env PYGMO_BUILD_TYPE=Python39 \
68
+ --env PYGMO_BUILD_TYPE=Python310 \
69
69
--env GITHUB_WORKSPACE=${GITHUB_WORKSPACE} \
70
70
--env GITHUB_REF=${GITHUB_REF} \
71
71
--env TWINE_USERNAME=${{ secrets.TWINE_USERNAME }} \
75
75
--platform linux/arm64 \
76
76
pagmo2/manylinux228_aarch64_with_deps:latest \
77
77
bash tools/gha_manylinux.sh
78
- arm64-manylinux228-py38 :
78
+ arm64-manylinux228-py39 :
79
79
runs-on : ubuntu-latest
80
80
steps :
81
81
- uses : actions/checkout@v2
84
84
# Use Docker Command Directly to take more control over the platform
85
85
run : >
86
86
docker run \
87
- --env PYGMO_BUILD_TYPE=Python38 \
87
+ --env PYGMO_BUILD_TYPE=Python39 \
88
88
--env GITHUB_WORKSPACE=${GITHUB_WORKSPACE} \
89
89
--env GITHUB_REF=${GITHUB_REF} \
90
90
--env TWINE_USERNAME=${{ secrets.TWINE_USERNAME }} \
@@ -94,48 +94,48 @@ jobs:
94
94
--platform linux/arm64 \
95
95
pagmo2/manylinux228_aarch64_with_deps:latest \
96
96
bash tools/gha_manylinux.sh
97
- amd64-manylinux228-py311 :
97
+ amd64-manylinux228-py312 :
98
98
runs-on : ubuntu-latest
99
99
container :
100
100
image : pagmo2/manylinux228_x86_64_with_deps:latest
101
101
env :
102
- PYGMO_BUILD_TYPE : " Python311 "
102
+ PYGMO_BUILD_TYPE : " Python312 "
103
103
TWINE_USERNAME : ${{ secrets.TWINE_USERNAME }}
104
104
TWINE_PASSWORD : ${{ secrets.TWINE_PASSWORD }}
105
105
steps :
106
106
- uses : actions/checkout@v2
107
107
- name : Build
108
108
run : bash tools/gha_manylinux.sh
109
- amd64-manylinux228-py310 :
109
+ amd64-manylinux228-py311 :
110
110
runs-on : ubuntu-latest
111
111
container :
112
112
image : pagmo2/manylinux228_x86_64_with_deps:latest
113
113
env :
114
- PYGMO_BUILD_TYPE : " Python310 "
114
+ PYGMO_BUILD_TYPE : " Python311 "
115
115
TWINE_USERNAME : ${{ secrets.TWINE_USERNAME }}
116
116
TWINE_PASSWORD : ${{ secrets.TWINE_PASSWORD }}
117
117
steps :
118
118
- uses : actions/checkout@v2
119
119
- name : Build
120
120
run : bash tools/gha_manylinux.sh
121
- amd64-manylinux228-py39 :
121
+ amd64-manylinux228-py310 :
122
122
runs-on : ubuntu-latest
123
123
container :
124
124
image : pagmo2/manylinux228_x86_64_with_deps:latest
125
125
env :
126
- PYGMO_BUILD_TYPE : " Python39 "
126
+ PYGMO_BUILD_TYPE : " Python310 "
127
127
TWINE_USERNAME : ${{ secrets.TWINE_USERNAME }}
128
128
TWINE_PASSWORD : ${{ secrets.TWINE_PASSWORD }}
129
129
steps :
130
130
- uses : actions/checkout@v2
131
131
- name : Build
132
132
run : bash tools/gha_manylinux.sh
133
- amd64-manylinux228-py38 :
133
+ amd64-manylinux228-py39 :
134
134
runs-on : ubuntu-latest
135
135
container :
136
136
image : pagmo2/manylinux228_x86_64_with_deps:latest
137
137
env :
138
- PYGMO_BUILD_TYPE : " Python38 "
138
+ PYGMO_BUILD_TYPE : " Python39 "
139
139
TWINE_USERNAME : ${{ secrets.TWINE_USERNAME }}
140
140
TWINE_PASSWORD : ${{ secrets.TWINE_PASSWORD }}
141
141
steps :
0 commit comments