Skip to content

Commit 5b5a439

Browse files
committed
Switch dev images for local ci/cd
1 parent 9e984f3 commit 5b5a439

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

.gitea/workflows/ci.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@ jobs:
1616
max-parallel: 4
1717
matrix:
1818
config:
19-
- { name: g++13, image: fir.love.io:3005/amd64/sockets-cpp-gcc1311, cc: /usr/bin/gcc, cxx: /usr/bin/g++, build_type: Debug, cppstd: 17 }
20-
- { name: g++13, image: fir.love.io:3005/amd64/sockets-cpp-gcc1311, cc: /usr/bin/gcc, cxx: /usr/bin/g++, build_type: Release, cppstd: 17 }
21-
- { name: clang16, image: fir.love.io:3005/amd64/sockets-cpp-gcc1311, cc: /usr/bin/clang, cxx: /usr/bin/clang++, build_type: Debug, cppstd: 17 }
22-
- { name: clang16, image: fir.love.io:3005/amd64/sockets-cpp-gcc1311, cc: /usr/bin/clang, cxx: /usr/bin/clang++, build_type: Release, cppstd: 17 }
23-
- { name: asan, image: fir.love.io:3005/amd64/sockets-cpp-gcc1311, cc: /usr/bin/gcc, cxx: /usr/bin/g++, build_type: asan, cppstd: 17 }
24-
- { name: tsan, image: fir.love.io:3005/amd64/sockets-cpp-gcc1311, cc: /usr/bin/gcc, cxx: /usr/bin/g++, build_type: tsan, cppstd: 17 }
25-
- { name: ubsan, image: fir.love.io:3005/amd64/sockets-cpp-gcc1311, cc: /usr/bin/gcc, cxx: /usr/bin/g++, build_type: ubsan, cppstd: 17 }
26-
- { name: g++8.4.0, image: fir.love.io:3005/amd64/sockets-cpp-gcc840, cc: /opt/gcc840/bin/gcc, cxx: /opt/gcc840/bin/g++, build_type: Debug, cppstd: 14 }
27-
- { name: g++8.4.0, image: fir.love.io:3005/amd64/sockets-cpp-gcc840, cc: /opt/gcc840/bin/gcc, cxx: /opt/gcc840/bin/g++, build_type: Debug, cppstd: 14 }
28-
- { name: g++10.3.0, image: fir.love.io:3005/amd64/sockets-cpp-gcc1030, cc: /opt/gcc1030/bin/gcc, cxx: /opt/gcc1030/bin/g++, build_type: Debug, cppstd: 14 }
29-
- { name: g++11.3.0, image: fir.love.io:3005/amd64/sockets-cpp-gcc1130, cc: /opt/gcc1130/bin/gcc, cxx: /opt/gcc1130/bin/g++, build_type: Debug, cppstd: 14 }
30-
- { name: g++12.3.0, image: fir.love.io:3005/amd64/sockets-cpp-gcc1230, cc: /opt/gcc1230/bin/gcc, cxx: /opt/gcc1230/bin/g++, build_type: Debug, cppstd: 20 }
19+
- { name: g++13, image: fir.love.io:3005/sockets-cpp-gcc1321, cc: /usr/bin/gcc, cxx: /usr/bin/g++, build_type: Debug, cppstd: 17 }
20+
- { name: g++13, image: fir.love.io:3005/sockets-cpp-gcc1321, cc: /usr/bin/gcc, cxx: /usr/bin/g++, build_type: Release, cppstd: 17 }
21+
- { name: clang16, image: fir.love.io:3005/sockets-cpp-gcc1321, cc: /usr/bin/clang, cxx: /usr/bin/clang++, build_type: Debug, cppstd: 17 }
22+
- { name: clang16, image: fir.love.io:3005/sockets-cpp-gcc1321, cc: /usr/bin/clang, cxx: /usr/bin/clang++, build_type: Release, cppstd: 17 }
23+
- { name: asan, image: fir.love.io:3005/sockets-cpp-gcc1321, cc: /usr/bin/gcc, cxx: /usr/bin/g++, build_type: asan, cppstd: 17 }
24+
- { name: tsan, image: fir.love.io:3005/sockets-cpp-gcc1321, cc: /usr/bin/gcc, cxx: /usr/bin/g++, build_type: tsan, cppstd: 17 }
25+
- { name: ubsan, image: fir.love.io:3005/sockets-cpp-gcc1321, cc: /usr/bin/gcc, cxx: /usr/bin/g++, build_type: ubsan, cppstd: 17 }
26+
- { name: g++8.4.0, image: fir.love.io:3005/sockets-cpp-gcc840, cc: /opt/gcc840/bin/gcc, cxx: /opt/gcc840/bin/g++, build_type: Debug, cppstd: 14 }
27+
- { name: g++8.4.0, image: fir.love.io:3005/sockets-cpp-gcc840, cc: /opt/gcc840/bin/gcc, cxx: /opt/gcc840/bin/g++, build_type: Debug, cppstd: 14 }
28+
- { name: g++10.3.0, image: fir.love.io:3005/sockets-cpp-gcc1030, cc: /opt/gcc1030/bin/gcc, cxx: /opt/gcc1030/bin/g++, build_type: Debug, cppstd: 14 }
29+
- { name: g++11.3.0, image: fir.love.io:3005/sockets-cpp-gcc1130, cc: /opt/gcc1130/bin/gcc, cxx: /opt/gcc1130/bin/g++, build_type: Debug, cppstd: 14 }
30+
- { name: g++12.3.0, image: fir.love.io:3005/sockets-cpp-gcc1230, cc: /opt/gcc1230/bin/gcc, cxx: /opt/gcc1230/bin/g++, build_type: Debug, cppstd: 20 }
3131

3232
name: "${{ matrix.config.name}} (C++${{ matrix.config.cppstd }}, ${{ matrix.config.build_type }})"
3333
steps:
@@ -43,7 +43,7 @@ jobs:
4343
4444
results:
4545
runs-on: ubuntu-latest
46-
if: ${{ always() }}
46+
if: always()
4747
needs: build_linux
4848
steps:
4949
- name: Report failure

0 commit comments

Comments
 (0)