Skip to content

Commit 19bcfeb

Browse files
committed
Sync from upstream.
2 parents 75e1a1e + a664cd1 commit 19bcfeb

File tree

2 files changed

+10
-11
lines changed

2 files changed

+10
-11
lines changed

.drone.jsonnet

+6-11
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ local linux_pipeline(name, image, environment, packages = "", sources = [], arch
3232
commands:
3333
[
3434
'set -e',
35+
'uname -a',
36+
'echo $DRONE_STAGE_MACHINE',
3537
'wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add -',
3638
] +
3739
(if sources != [] then [ ('apt-add-repository "' + source + '"') for source in sources ] else []) +
@@ -224,23 +226,16 @@ local windows_pipeline(name, image, environment, arch = "amd64") =
224226
),
225227

226228
linux_pipeline(
227-
"Linux 23.04 GCC 13 64 ASAN",
228-
"cppalliance/droneubuntu2304:1",
229-
{ TOOLSET: 'gcc', COMPILER: 'g++-13', CXXSTD: '11,14,17,20,2b', ADDRMD: '64' } + asan,
230-
"g++-13-multilib",
231-
),
232-
233-
linux_pipeline(
234-
"Linux 24.04 GCC 14 32",
229+
"Linux 24.04 GCC 14 UBSAN",
235230
"cppalliance/droneubuntu2404:1",
236-
{ TOOLSET: 'gcc', COMPILER: 'g++-14', CXXSTD: '11,14,17,20,2b', ADDRMD: '32' },
231+
{ TOOLSET: 'gcc', COMPILER: 'g++-14', CXXSTD: '11,14,17,20,2b' } + ubsan,
237232
"g++-14-multilib",
238233
),
239234

240235
linux_pipeline(
241-
"Linux 24.04 GCC 14 64",
236+
"Linux 24.04 GCC 14 ASAN",
242237
"cppalliance/droneubuntu2404:1",
243-
{ TOOLSET: 'gcc', COMPILER: 'g++-14', CXXSTD: '11,14,17,20,2b', ADDRMD: '64' },
238+
{ TOOLSET: 'gcc', COMPILER: 'g++-14', CXXSTD: '11,14,17,20,2b' } + asan,
244239
"g++-14-multilib",
245240
),
246241

.github/workflows/ci.yml

+4
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,10 @@ jobs:
168168
shell: bash
169169

170170
steps:
171+
- name: Enable Node 16
172+
run: |
173+
echo "ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true" >> $GITHUB_ENV
174+
171175
- uses: actions/checkout@v3
172176

173177
- name: Setup container environment

0 commit comments

Comments
 (0)