Skip to content

Commit 30ba3c3

Browse files
anarthalmzimbres
authored andcommitted
Leftovers cleanup
1 parent 90f3d6c commit 30ba3c3

File tree

1 file changed

+3
-19
lines changed

1 file changed

+3
-19
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,6 @@
88

99
name: CI
1010

11-
# Permissions for GITHUB_TOKEN
12-
permissions:
13-
# Required for actions/checkout
14-
contents: read
15-
# Required to save the Docker container to the GitHub container registry
16-
packages: write
17-
1811
on: [push, pull_request]
1912

2013
jobs:
@@ -36,7 +29,7 @@ jobs:
3629
CMAKE_BUILD_PARALLEL_LEVEL: 4
3730
steps:
3831
- name: Checkout
39-
uses: actions/checkout@v3
32+
uses: actions/checkout@v4
4033

4134
- name: Setup Boost
4235
run: python3 tools/ci.py setup-boost --source-dir=$(pwd)
@@ -113,7 +106,7 @@ jobs:
113106
OPENSSL_ROOT: "C:\\Program Files\\OpenSSL"
114107
steps:
115108
- name: Checkout
116-
uses: actions/checkout@v3
109+
uses: actions/checkout@v4
117110

118111
- name: Setup user-config.jam
119112
run: cp tools/user-config.jam "${HOMEDRIVE}${HOMEPATH}/"
@@ -141,55 +134,48 @@ jobs:
141134
- toolset: gcc-11
142135
install: g++-11
143136
os: ubuntu-latest
144-
container: ubuntu:22.04
145137
cxxstd: '17'
146138
build-type: 'Debug'
147139
ldflags: ''
148140

149141
- toolset: gcc-11
150142
install: g++-11
151143
os: ubuntu-latest
152-
container: ubuntu:22.04
153144
cxxstd: '20'
154145
build-type: 'Release'
155146
ldflags: ''
156147

157148
- toolset: clang-11
158149
install: clang-11
159150
os: ubuntu-latest
160-
container: ubuntu:22.04
161151
cxxstd: '17'
162152
build-type: 'Debug'
163153
ldflags: ''
164154

165155
- toolset: clang-11
166156
install: clang-11
167157
os: ubuntu-latest
168-
container: ubuntu:22.04
169158
cxxstd: '20'
170159
build-type: 'Debug'
171160
ldflags: ''
172161

173162
- toolset: clang-13
174163
install: clang-13
175164
os: ubuntu-latest
176-
container: ubuntu:22.04
177165
cxxstd: '17'
178166
build-type: 'Release'
179167
ldflags: ''
180168

181169
- toolset: clang-13
182170
install: clang-13
183171
os: ubuntu-latest
184-
container: ubuntu:22.04
185172
cxxstd: '20'
186173
build-type: 'Release'
187174
ldflags: ''
188175

189176
- toolset: clang-14
190177
install: 'clang-14 libc++-14-dev libc++abi-14-dev'
191178
os: ubuntu-latest
192-
container: ubuntu:22.04
193179
cxxstd: '17'
194180
build-type: 'Debug'
195181
cxxflags: '-stdlib=libc++'
@@ -198,14 +184,12 @@ jobs:
198184
- toolset: clang-14
199185
install: 'clang-14 libc++-14-dev libc++abi-14-dev'
200186
os: ubuntu-latest
201-
container: ubuntu:22.04
202187
cxxstd: '20'
203188
build-type: 'Release'
204189
cxxflags: '-stdlib=libc++'
205190
ldflags: '-lc++'
206191

207192
runs-on: ${{ matrix.os }}
208-
# container: ${{matrix.container}}
209193
env:
210194
CXXFLAGS: ${{matrix.cxxflags}} -Wall -Wextra
211195
LDFLAGS: ${{matrix.ldflags}}
@@ -305,7 +289,7 @@ jobs:
305289
container: ${{matrix.container}}
306290
steps:
307291
- name: Checkout
308-
uses: actions/checkout@v3
292+
uses: actions/checkout@v4
309293

310294
- name: Setup container environment
311295
if: matrix.container

0 commit comments

Comments
 (0)