Skip to content

Commit

Permalink
Disable cross compile
Browse files Browse the repository at this point in the history
  • Loading branch information
taig committed Sep 26, 2023
1 parent 461b8f8 commit 7c637e0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/branches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Code formatting
run: sbt -Dmode=ci scalafmtCheckAll
- name: Fatal warnings
run: sbt -Dmode=ci +compile
run: sbt -Dmode=ci compile
test:
name: Unit tests
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Code formatting
run: sbt -Dmode=ci scalafmtCheckAll
- name: Fatal warnings
run: sbt -Dmode=ci +compile
run: sbt -Dmode=ci compile
test:
name: Unit tests
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion project/GitHubActionsGenerator.scala
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ object GitHubActionsGenerator {
),
Json.obj(
"name" := "Fatal warnings",
"run" := "sbt -Dmode=ci +compile"
"run" := "sbt -Dmode=ci compile"
)
)
)
Expand Down

0 comments on commit 7c637e0

Please sign in to comment.