Updated CI ubuntu version.

This commit is contained in:
Takatoshi Kondo 2025-05-17 10:25:54 +09:00
parent 0225acf247
commit 8023a857e1
2 changed files with 10 additions and 10 deletions

View File

@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v3
- name: Install build dependencies - name: Install build dependencies
run: | run: |
sudo apt-get update sudo apt-get update
@ -24,7 +24,7 @@ jobs:
- name: Cache boost - name: Cache boost
id: cache-boost id: cache-boost
uses: actions/cache@v1 uses: actions/cache@v3
with: with:
path: ~/boost-prefix/ path: ~/boost-prefix/
key: ${{ runner.os }}-boost-1-85-0-2024-05-27 key: ${{ runner.os }}-boost-1-85-0-2024-05-27
@ -35,7 +35,7 @@ jobs:
- name: Cache zlib - name: Cache zlib
id: cache-zlib id: cache-zlib
uses: actions/cache@v1 uses: actions/cache@v3
with: with:
path: ~/zlib-prefix/ path: ~/zlib-prefix/
key: ${{ runner.os }}-zlib-64-1-2-11-2021-08-09 key: ${{ runner.os }}-zlib-64-1-2-11-2021-08-09

View File

@ -84,7 +84,7 @@ jobs:
linux: linux:
name: ${{ format('Linux (pattern {0})', matrix.pattern) }} name: ${{ format('Linux (pattern {0})', matrix.pattern) }}
runs-on: ubuntu-20.04 runs-on: ubuntu-24.04
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
@ -136,7 +136,7 @@ jobs:
case ${{ matrix.pattern }} in case ${{ matrix.pattern }} in
0) 0)
export CXX="clang++-10" export CXX="clang++"
export MSGPACK_CXX_VERSION="MSGPACK_CXX11=ON" export MSGPACK_CXX_VERSION="MSGPACK_CXX11=ON"
;; ;;
1) 1)
@ -144,7 +144,7 @@ jobs:
export MSGPACK_CXX_VERSION="MSGPACK_CXX11=ON" export MSGPACK_CXX_VERSION="MSGPACK_CXX11=ON"
;; ;;
2) 2)
export CXX="clang++-10" export CXX="clang++"
export MSGPACK_CXX_VERSION="MSGPACK_CXX14=ON" export MSGPACK_CXX_VERSION="MSGPACK_CXX14=ON"
;; ;;
3) 3)
@ -153,7 +153,7 @@ jobs:
export MSGPACK_USE_STD_VARIANT_ADAPTOR="MSGPACK_USE_STD_VARIANT_ADAPTOR=ON" export MSGPACK_USE_STD_VARIANT_ADAPTOR="MSGPACK_USE_STD_VARIANT_ADAPTOR=ON"
;; ;;
4) 4)
export CXX="clang++-10" export CXX="clang++"
export MSGPACK_CXX_VERSION="MSGPACK_CXX20=ON" export MSGPACK_CXX_VERSION="MSGPACK_CXX20=ON"
export NO_BOOST="-DMSGPACK_NO_BOOST" export NO_BOOST="-DMSGPACK_NO_BOOST"
;; ;;
@ -162,7 +162,7 @@ jobs:
export ARCH=32 export ARCH=32
;; ;;
6) 6)
export CXX="clang++-10" export CXX="clang++"
export API_VERSION=2 export API_VERSION=2
;; ;;
7) 7)
@ -170,7 +170,7 @@ jobs:
export API_VERSION=1 export API_VERSION=1
;; ;;
8) 8)
export CXX="clang++-10" export CXX="clang++"
export CHAR_SIGN="unsigned" export CHAR_SIGN="unsigned"
;; ;;
9) 9)
@ -178,7 +178,7 @@ jobs:
export X3_PARSE="ON" export X3_PARSE="ON"
;; ;;
10) 10)
export CXX="clang++-10" export CXX="clang++"
export ACTION="ci/build_regression.sh" export ACTION="ci/build_regression.sh"
;; ;;
11) 11)