Skip to content

Commit

Permalink
debug and fix GH action
Browse files Browse the repository at this point in the history
  • Loading branch information
pmhsfelix committed Sep 22, 2024
1 parent acc999b commit f899350
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ jobs:
- name: Build with Gradle
env:
DB_URL: ${{ secrets.DB_URL }}
run: ./code/jvm/gradlew -p code/jvm check --info
run: ./code/jvm/gradlew -p code/jvm check --debug
4 changes: 2 additions & 2 deletions code/jvm/tic-tac-toe/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ kotlin {
* and provide it with the same password as define on `tests/Dockerfile-db-test`
*/
task<Exec>("dbTestsUp") {
commandLine("docker-compose", "up", "-d", "--build", "--force-recreate", "db-tests")
commandLine("docker", "compose", "up", "-d", "--build", "--force-recreate", "db-tests")
}

task<Exec>("dbTestsWait") {
Expand All @@ -64,7 +64,7 @@ task<Exec>("dbTestsWait") {
}

task<Exec>("dbTestsDown") {
commandLine("docker-compose", "down")
commandLine("docker", "compose", "down")
}

tasks.named("check") {
Expand Down

0 comments on commit f899350

Please sign in to comment.