Skip to content

Commit c841202

Browse files
committed
More API changes. Now compiles. Tests succeed. The howto example runs.
1 parent dcebd04 commit c841202

File tree

108 files changed

+7007
-5592
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

108 files changed

+7007
-5592
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -124,12 +124,6 @@ jobs:
124124
make static-analysis || true # Don't fail CI on static analysis warnings
125125
126126
- name: Run tests
127-
if: env.RUN_TESTS == 'true'
128-
run: |
129-
cd ${{github.workspace}}/build
130-
./bin/test_harness
131-
132-
- name: Run CTest
133127
if: env.RUN_TESTS == 'true'
134128
run: |
135129
cd ${{github.workspace}}/build

.github/workflows/prerelease.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
if: env.RUN_TESTS == 'true'
9191
run: |
9292
cd ${{github.workspace}}/build
93-
./bin/test_harness
93+
ctest --output-on-failure --parallel
9494
9595
- name: Run static analysis
9696
if: matrix.sanitizer == 'none' && matrix.arch == 'x86_64'
@@ -150,13 +150,13 @@ jobs:
150150
if: matrix.os != 'windows-latest'
151151
run: |
152152
cd ${{github.workspace}}/build
153-
./bin/test_harness
153+
ctest --output-on-failure --parallel
154154
155155
- name: Run tests (Windows)
156156
if: matrix.os == 'windows-latest'
157157
run: |
158158
cd ${{github.workspace}}/build
159-
.\bin\${{env.BUILD_TYPE}}\test_harness.exe
159+
ctest --output-on-failure --parallel
160160
161161
# =============================================================================
162162
# Create PR to Release Branch (only on successful tests)

0 commit comments

Comments
 (0)