Skip to content

Commit

Permalink
Merge pull request #82 from smemsh/workflow-change-updates
Browse files Browse the repository at this point in the history
Fix test runs after recent gh/docker/cmake changes
  • Loading branch information
djmitche authored Aug 14, 2024
2 parents c49ff58 + 50dbb0b commit 1525e58
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: "Test on ${{ matrix.name }}"
run: docker-compose up ${{ matrix.container }}
run: docker compose up ${{ matrix.container }}
2 changes: 1 addition & 1 deletion test/docker/task.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ ADD . src/libshared

# Build Taskwarrior
RUN cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
RUN cmake --build build -j 8 --target build_tests
RUN cmake --build build -j 8 --target test_runner --target task_executable

# Running tests
CMD ctest --test-dir build -j 8 --output-on-failure --rerun-failed

0 comments on commit 1525e58

Please sign in to comment.