Skip to content

Commit 6b8aa08

Browse files
committed
Fix CI
1 parent ea92b34 commit 6b8aa08

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/cmake-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Install Dependencies
1919
shell: bash
2020
working-directory: ${{github.workspace}}
21-
run: sudo apt update && sudo apt install re2c bison flex libboost-dev ninja-build && conda install -c potassco clingo
21+
run: sudo apt update && sudo apt install re2c bison flex libboost-dev build-essential && conda install -c potassco clingo
2222

2323
- name: Create Build Environment (Debug)
2424
run: cmake -E make_directory ${{github.workspace}}/debug
@@ -39,12 +39,12 @@ jobs:
3939
- name: Configure CMake (Debug)
4040
shell: bash
4141
working-directory: ${{github.workspace}}/debug
42-
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=Debug -G Ninja
42+
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=Debug
4343

4444
- name: Configure CMake (Release)
4545
shell: bash
4646
working-directory: ${{github.workspace}}/release
47-
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=Release -G Ninja
47+
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=Release
4848

4949
- name: Build Dependencies (Debug)
5050
working-directory: ${{github.workspace}}/debug

.github/workflows/cmake-deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Install Dependencies
2020
working-directory: ${{github.workspace}}
2121
shell: bash
22-
run: sudo apt update && sudo apt install dpkg rpm re2c bison flex libboost-dev ninja-build && conda install -c potassco clingo
22+
run: sudo apt update && sudo apt install dpkg rpm re2c bison flex libboost-dev build-essential && conda install -c potassco clingo
2323

2424
- name: Create Build Environment
2525
run: cmake -E make_directory ${{github.workspace}}/build
@@ -32,7 +32,7 @@ jobs:
3232
- name: Configure CMake
3333
shell: bash
3434
working-directory: ${{github.workspace}}/build
35-
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=Release -G Ninja
35+
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=Release
3636

3737
- name: Build Dependencies
3838
working-directory: ${{github.workspace}}/build

0 commit comments

Comments
 (0)