Skip to content

Commit 364240f

Browse files
committed
Update CI
1 parent 8a21bb1 commit 364240f

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

.github/workflows/cmake-deploy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v2
1414

15+
- name: Install Dependencies
16+
working-directory: ${{github.workspace}}
17+
shell: bash
18+
run: sudo apt update && sudo apt install dpkg rpm libboost-dev
19+
1520
- name: Create Build Environment
1621
run: cmake -E make_directory ${{github.workspace}}/build
1722

@@ -30,11 +35,6 @@ jobs:
3035
shell: bash
3136
run: ctest -C Release
3237

33-
- name: Install Dependencies
34-
working-directory: ${{github.workspace}}
35-
shell: bash
36-
run: sudo apt update && sudo apt install dpkg rpm
37-
3838
- name: Package
3939
working-directory: ${{github.workspace}}/build
4040
shell: bash

.github/workflows/cmake-test.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@v2
1313

14+
- name: Install Dependencies
15+
shell: bash
16+
working-directory: ${{github.workspace}}
17+
run: sudo apt update && sudo apt install libboost-dev
18+
1419
- name: Create Build Environment (Debug)
1520
run: cmake -E make_directory ${{github.workspace}}/debug
1621

0 commit comments

Comments
 (0)