Skip to content

Commit 3dbd33b

Browse files
authored
Bump Github Actions Ubuntu to 22.04
1 parent 705532e commit 3dbd33b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
build:
2424
strategy:
2525
matrix:
26-
os: [windows-latest, ubuntu-20.04]
26+
os: [windows-latest, ubuntu-22.04]
2727
arch: [x64, x86]
2828
include:
2929
- os: windows-latest
@@ -32,7 +32,7 @@ jobs:
3232
- os: windows-latest
3333
arch: x86
3434
CMAKE_ARCH_FLAG: -A Win32
35-
- os: ubuntu-20.04
35+
- os: ubuntu-22.04
3636
arch: x86
3737
CMAKE_ARCH_FLAG: -DCMAKE_C_FLAGS="-m32" -DCMAKE_CXX_FLAGS="-m32"
3838
- os: macos-latest
@@ -46,7 +46,7 @@ jobs:
4646
submodules: 'recursive'
4747

4848
- name: Install dependencies Ubuntu x86
49-
if: ${{ matrix.os == 'ubuntu-20.04' && matrix.arch == 'x86' }}
49+
if: ${{ matrix.os == 'ubuntu-22.04' && matrix.arch == 'x86' }}
5050
run: |
5151
sudo apt update
5252
sudo apt install gcc-multilib g++-multilib
@@ -72,7 +72,7 @@ jobs:
7272
run: cmake --build build -j -t ${{env.BUILD_TARGET}} --config ${{env.BUILD_TYPE}}
7373

7474
- name: Strip debug information from binaries and keep them outside (Ubuntu)
75-
if: ${{ matrix.os == 'ubuntu-20.04' }}
75+
if: ${{ matrix.os == 'ubuntu-22.04' }}
7676
run: |
7777
find *.dll -exec objcopy --only-keep-debug {} {}.pdb \;
7878
find *.dll -exec objcopy --strip-debug {} \;

0 commit comments

Comments
 (0)