Skip to content

Commit 4213e07

Browse files
committed
ci: adjusted scripts and workflow for the changed CMakeLists
1 parent 3c50680 commit 4213e07

File tree

3 files changed

+3
-11
lines changed

3 files changed

+3
-11
lines changed

.github/workflows/actions.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ jobs:
2121
git submodule update
2222
script/build release
2323
script/build debug
24-
script/build test
2524
- name: Test
2625
run: |
27-
build/test/ceda
26+
build/release/ceda-test
2827

script/build

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,8 @@ case ${1-help} in
2626
make -C build/debug
2727
;;
2828

29-
test)
30-
banner "Building TEST"
31-
mkdir -p build/test
32-
cmake -B build/test -DCMAKE_BUILD_TYPE=Debug -DCEDA_TEST=1
33-
make -C build/test
34-
;;
35-
3629
help|*)
37-
echo Choose one among: [release, debug, test]
30+
echo Choose one among: [release, debug]
3831
exit 1
3932
;;
4033
esac

script/test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
set -euo pipefail
44

5-
build/test/ceda
5+
build/release/ceda-test
66

0 commit comments

Comments
 (0)