File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 23
23
build :
24
24
strategy :
25
25
matrix :
26
- os : [windows-latest, ubuntu-20 .04]
26
+ os : [windows-latest, ubuntu-22 .04]
27
27
arch : [x64, x86]
28
28
include :
29
29
- os : windows-latest
32
32
- os : windows-latest
33
33
arch : x86
34
34
CMAKE_ARCH_FLAG : -A Win32
35
- - os : ubuntu-20 .04
35
+ - os : ubuntu-22 .04
36
36
arch : x86
37
37
CMAKE_ARCH_FLAG : -DCMAKE_C_FLAGS="-m32" -DCMAKE_CXX_FLAGS="-m32"
38
38
- os : macos-latest
46
46
submodules : ' recursive'
47
47
48
48
- 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' }}
50
50
run : |
51
51
sudo apt update
52
52
sudo apt install gcc-multilib g++-multilib
72
72
run : cmake --build build -j -t ${{env.BUILD_TARGET}} --config ${{env.BUILD_TYPE}}
73
73
74
74
- 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' }}
76
76
run : |
77
77
find *.dll -exec objcopy --only-keep-debug {} {}.pdb \;
78
78
find *.dll -exec objcopy --strip-debug {} \;
You can’t perform that action at this time.
0 commit comments