Skip to content

Commit

Permalink
Local CI/CD updates
Browse files Browse the repository at this point in the history
  • Loading branch information
CJLove committed Dec 7, 2024
1 parent 0224b97 commit 61c4a7b
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions .gitea/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,18 @@ jobs:
max-parallel: 4
matrix:
config:
- { name: g++13, image: fir.love.io:3005/serf-cpp-gcc1321, cc: /usr/bin/gcc, cxx: /usr/bin/g++, build_type: Debug, cppstd: 14 }
- { name: g++13, image: fir.love.io:3005/serf-cpp-gcc1321, cc: /usr/bin/gcc, cxx: /usr/bin/g++, build_type: Release, cppstd: 14 }
- { name: clang16, image: fir.love.io:3005/serf-cpp-gcc1321, cc: /usr/bin/clang, cxx: /usr/bin/clang++, build_type: Debug, cppstd: 14 }
- { name: clang16, image: fir.love.io:3005/serf-cpp-gcc1321, cc: /usr/bin/clang, cxx: /usr/bin/clang++, build_type: Release, cppstd: 14 }
- { name: asan, image: fir.love.io:3005/serf-cpp-gcc1321, cc: /usr/bin/gcc, cxx: /usr/bin/g++, build_type: asan, cppstd: 14 }
- { name: tsan, image: fir.love.io:3005/serf-cpp-gcc1321, cc: /usr/bin/gcc, cxx: /usr/bin/g++, build_type: tsan, cppstd: 14 }
- { name: g++8.4.0, image: fir.love.io:3005/serf-cpp-gcc840, cc: /opt/gcc840/bin/gcc, cxx: /opt/gcc840/bin/g++, build_type: Debug, cppstd: 14 }
- { name: g++8.4.0, image: fir.love.io:3005/serf-cpp-gcc840, cc: /opt/gcc840/bin/gcc, cxx: /opt/gcc840/bin/g++, build_type: Debug, cppstd: 14 }
- { name: g++10.3.0, image: fir.love.io:3005/serf-cpp-gcc1030, cc: /opt/gcc1030/bin/gcc, cxx: /opt/gcc1030/bin/g++, build_type: Debug, cppstd: 14 }
- { name: g++11.3.0, image: fir.love.io:3005/serf-cpp-gcc1130, cc: /opt/gcc1130/bin/gcc, cxx: /opt/gcc1130/bin/g++, build_type: Debug, cppstd: 14 }
- { name: g++12.3.0, image: fir.love.io:3005/serf-cpp-gcc1230, cc: /opt/gcc1230/bin/gcc, cxx: /opt/gcc1230/bin/g++, build_type: Debug, cppstd: 14 }
- { name: g++14, image: fir.love.io:3005/amd64/serf-cpp-gcc1421, cc: /usr/bin/gcc, cxx: /usr/bin/g++, build_type: Debug, cppstd: 14 }
- { name: g++14, image: fir.love.io:3005/amd64/serf-cpp-gcc1421, cc: /usr/bin/gcc, cxx: /usr/bin/g++, build_type: Release, cppstd: 14 }
- { name: clang19, image: fir.love.io:3005/amd64/serf-cpp-gcc1421, cc: /usr/bin/clang, cxx: /usr/bin/clang++, build_type: Debug, cppstd: 14 }
- { name: clang19, image: fir.love.io:3005/amd64/serf-cpp-gcc1421, cc: /usr/bin/clang, cxx: /usr/bin/clang++, build_type: Release, cppstd: 14 }
- { name: asan, image: fir.love.io:3005/amd64/serf-cpp-gcc1421, cc: /usr/bin/gcc, cxx: /usr/bin/g++, build_type: asan, cppstd: 14 }
- { name: tsan, image: fir.love.io:3005/amd64/serf-cpp-gcc1421, cc: /usr/bin/gcc, cxx: /usr/bin/g++, build_type: tsan, cppstd: 14 }
- { name: g++8.4.0, image: fir.love.io:3005/amd64/serf-cpp-gcc840, cc: /opt/gcc840/bin/gcc, cxx: /opt/gcc840/bin/g++, build_type: Debug, cppstd: 14 }
- { name: g++8.4.0, image: fir.love.io:3005/amd64/serf-cpp-gcc840, cc: /opt/gcc840/bin/gcc, cxx: /opt/gcc840/bin/g++, build_type: Debug, cppstd: 14 }
- { name: g++10.3.0, image: fir.love.io:3005/amd64/serf-cpp-gcc1030, cc: /opt/gcc1030/bin/gcc, cxx: /opt/gcc1030/bin/g++, build_type: Debug, cppstd: 14 }
- { name: g++11.3.0, image: fir.love.io:3005/amd64/serf-cpp-gcc1130, cc: /opt/gcc1130/bin/gcc, cxx: /opt/gcc1130/bin/g++, build_type: Debug, cppstd: 14 }
- { name: g++12.3.0, image: fir.love.io:3005/amd64/serf-cpp-gcc1230, cc: /opt/gcc1230/bin/gcc, cxx: /opt/gcc1230/bin/g++, build_type: Debug, cppstd: 14 }
- { name: g++13.3.0, image: fir.love.io:3005/amd64/serf-cpp-gcc1330, cc: /opt/gcc1330/bin/gcc, cxx: /opt/gcc1330/bin/g++, build_type: Debug, cppstd: 14 }

name: "${{ matrix.config.name}} (C++${{ matrix.config.cppstd }}, ${{ matrix.config.build_type }})"
steps:
Expand Down

0 comments on commit 61c4a7b

Please sign in to comment.