-
Notifications
You must be signed in to change notification settings - Fork 276
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cross compile scala-native-cli with Scala Native
Co-authored-by: Tomasz Godzik <[email protected]>
- Loading branch information
Showing
390 changed files
with
1,241 additions
and
256 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,9 +33,32 @@ jobs: | |
- run: | ||
# for GitOps tests | ||
git config --global user.email "[email protected]" && git config --global user.name "scalafmt" | ||
- run: TEST="2.12" sbt ci-test | ||
- run: TEST="2.12" sbt ci-test-jvm | ||
shell: bash | ||
- run: TEST="2.13" sbt ci-test | ||
- run: TEST="2.13" sbt ci-test-jvm | ||
shell: bash | ||
test-scala-native: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [windows-latest, ubuntu-latest] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up JVM | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: ${{ matrix.java }} | ||
distribution: 'temurin' | ||
cache: 'sbt' | ||
- run: | ||
# for GitOps tests | ||
git config --global user.email "[email protected]" && git config --global user.name "scalafmt" | ||
- run: TEST="2.12" sbt ci-test-native | ||
shell: bash | ||
- run: TEST="2.13" sbt ci-test-native | ||
shell: bash | ||
community-test: | ||
strategy: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.