Skip to content

Commit 73db69d

Browse files
aljazfrancicsedovmo
authored andcommitted
Fix CI
1 parent 83cbb24 commit 73db69d

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

.github/workflows/cmake-multi-platform.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,23 +14,22 @@ env:
1414

1515
jobs:
1616
build_linux:
17-
runs-on: ${{ matrix.os }}
17+
runs-on: ubuntu-latest
1818
timeout-minutes: 180
1919

2020
strategy:
2121
# Set fail-fast to false to ensure that feedback is delivered for all matrix combinations. Consider changing this to true when your workflow is stable.
2222
fail-fast: false
2323

2424
matrix:
25-
os: [ubuntu-latest]
26-
build_type: [Release]
27-
c_compiler: [gcc, clang]
2825
include:
29-
- os: ubuntu-latest
26+
- os: ubuntu:20.04
27+
build_type: Release
3028
c_compiler: gcc
3129
cpp_compiler: g++
3230
cpack: tgz
33-
- os: ubuntu-latest
31+
- os: ubuntu:20.04
32+
build_type: Release
3433
c_compiler: clang
3534
cpp_compiler: clang++
3635
cpack: tgz
@@ -39,7 +38,7 @@ jobs:
3938
- name: Install basic dependencies
4039
run: |
4140
sudo apt-get update
42-
sudo apt-get install -y libpcap-dev
41+
sudo apt-get install -y libpcap-dev mono-runtime
4342
4443
- uses: actions/checkout@v4
4544

@@ -76,7 +75,7 @@ jobs:
7675
if: always()
7776
uses: actions/upload-artifact@v4
7877
with:
79-
name: Test Results ${{ matrix.os }}-${{ matrix.c_compiler }}
78+
name: Test Results ubuntu-${{ matrix.c_compiler }}
8079
path: ${{ steps.strings.outputs.build-output-dir }}/Testing/Temporary/LastTest.log
8180
retention-days: 7
8281

@@ -89,7 +88,7 @@ jobs:
8988
if: always()
9089
uses: actions/upload-artifact@v4
9190
with:
92-
name: asam-cmp-${{ matrix.os }}-${{ matrix.c_compiler }}
91+
name: asam-cmp-ubuntu-${{ matrix.c_compiler }}
9392
path: ${{ env.package_path }}
9493
retention-days: 7
9594

0 commit comments

Comments
 (0)