Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: run more scripted tests on recent JDKs #392

Merged
merged 1 commit into from
Feb 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- uses: coursier/setup-action@v1
with:
jvm: temurin:17
- run: sbt "test; scripted sbt-scalafix/*"
- run: sbt "test; scripted sbt-*/* skip-windows/*"
jdk21:
name: JDK21 tests
runs-on: ubuntu-latest
Expand All @@ -40,7 +40,7 @@ jobs:
- uses: olafurpg/setup-scala@v14
with:
jvm: temurin:17
- run: sbt "test; scripted sbt-scalafix/*"
- run: sbt "test; scripted sbt-*/* skip-windows/*"
windows:
name: Windows tests
runs-on: windows-latest
Expand Down
4 changes: 4 additions & 0 deletions src/sbt-test/skip-windows/caching/test
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# make sure unmanagedSources does not silently exclude 000-chmoded files on recent
# sbt versions (where input files are stamped with Hash by default)
> set unmanagedSources / inputFileStamper := sbt.nio.FileStamper.LastModified

# a re-run after a no-op, successful run should be cached
> set scalafixConfig := Some(file("files/DisableSyntaxNull.scalafix.conf"))
$ mkdir src/main/scala
Expand Down
Loading