Skip to content

Commit 0e93449

Browse files
fix: a 86 interrupt instruction forapple in doctest
1 parent 2a0ad42 commit 0e93449

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/tests.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,11 @@ jobs:
3030
- os: macos-15
3131
cmake-install: "brew install cmake"
3232
dependencies: "brew install openssl"
33-
make: make ./countly-tests && ./countly-tests
33+
make: |
34+
mkdir -p build && cd build
35+
cmake -DCOUNTLY_BUILD_TESTS=1 ..
36+
cmake --build . --config Release
37+
ctest --output-on-failure
3438
- os: ubuntu-24.04
3539
cmake-install: |
3640
sudo apt-get update && sudo apt-get install -y \
@@ -41,9 +45,9 @@ jobs:
4145
libssl-dev
4246
make: |
4347
mkdir -p build && cd build
44-
cmake ..
45-
make countly-tests
46-
./countly-tests
48+
cmake -DCOUNTLY_BUILD_TESTS=1 ..
49+
cmake --build . --config Release
50+
ctest --output-on-failure
4751
4852
steps:
4953
- name: Checkout code

0 commit comments

Comments
 (0)