2022-04-20 17:11:24 +03:00
|
|
|
name: Code Formatting Check
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [develop, "release/*"]
|
|
|
|
pull_request:
|
|
|
|
branches: ["*"]
|
|
|
|
|
|
|
|
env:
|
|
|
|
# Please ensure that this is in sync with graalVersion in build.sbt
|
Java and Graal versions are checked before the build starts (#9106)
Add checks of Java and GraalVM versions before the `sbt` project is fully loaded. This ensures that all the devs have exactly the version specified in our `build.sbt`.
# Important Notes
Trying to start `sbt` with a different java versions now results in:
```
$ java -version
openjdk version "21" 2023-09-19
OpenJDK Runtime Environment GraalVM CE 21+35.1 (build 21+35-jvmci-23.1-b15)
OpenJDK 64-Bit Server VM GraalVM CE 21+35.1 (build 21+35-jvmci-23.1-b15, mixed mode, sharing)
$ sbt
[info] welcome to sbt 1.9.7 (GraalVM Community Java 21)
[info] loading settings for project enso-build from plugins.sbt ...
[info] loading project definition from /home/pavel/dev/enso/project
[info] loading settings for project enso from build.sbt ...
[info] resolving key references (65272 settings) ...
[info] set current project to enso (in build file:/home/pavel/dev/enso/)
[error] Running on GraalVM version 21. Expected GraalVM version 21.0.2.
[error] Total time: 0 s, completed Feb 20, 2024, 1:06:18 PM
[warn] Project loading failed: (r)etry, (q)uit, (l)ast, or (i)gnore? (default: r)
```
```
$ java -version
openjdk version "17.0.10" 2024-01-16
OpenJDK Runtime Environment JBR-17.0.10+1-1087.17-jcef (build 17.0.10+1-b1087.17)
OpenJDK 64-Bit Server VM JBR-17.0.10+1-1087.17-jcef (build 17.0.10+1-b1087.17, mixed mode)
$ sbt
[info] welcome to sbt 1.9.7 (JetBrains s.r.o. Java 17.0.10)
[info] loading settings for project enso-build from plugins.sbt ...
[info] loading project definition from /home/pavel/dev/enso/project
[info] compiling 44 Scala sources to /home/pavel/dev/enso/project/target/scala-2.12/sbt-1.0/classes ...
[info] loading settings for project enso from build.sbt ...
[info] resolving key references (65272 settings) ...
[info] set current project to enso (in build file:/home/pavel/dev/enso/)
[warn] Running on non-GraalVM JVM (The actual java.vendor is JetBrains s.r.o.). Expected GraalVM Community java.vendor.
[error] Running on Java version 17. Expected Java version 21.
[error] Total time: 0 s, completed Feb 20, 2024, 1:07:40 PM
[warn] Project loading failed: (r)etry, (q)uit, (l)ast, or (i)gnore? (default: r)
```
2024-02-21 13:33:32 +03:00
|
|
|
javaVersion: 21.0.2
|
2022-04-20 17:11:24 +03:00
|
|
|
# Please ensure that this is in sync with project/build.properties
|
2023-12-15 17:45:23 +03:00
|
|
|
sbtVersion: 1.9.7
|
2022-04-20 17:11:24 +03:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
test_formatting:
|
|
|
|
name: Test Formatting
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
timeout-minutes: 120
|
|
|
|
strategy:
|
|
|
|
# No need to run it on multiple distros, result should be the same
|
|
|
|
fail-fast: false
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup GraalVM Environment
|
2023-07-23 12:21:21 +03:00
|
|
|
uses: graalvm/setup-graalvm@v1
|
2022-04-20 17:11:24 +03:00
|
|
|
with:
|
|
|
|
java-version: ${{ env.javaVersion }}
|
2023-07-23 12:21:21 +03:00
|
|
|
distribution: graalvm-community
|
|
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
2022-04-20 17:11:24 +03:00
|
|
|
- name: Set Up SBT
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
curl --retry 4 --retry-connrefused -fsSL -o sbt.tgz https://github.com/sbt/sbt/releases/download/v${{env.sbtVersion}}/sbt-${{env.sbtVersion}}.tgz
|
|
|
|
tar -xzf sbt.tgz
|
|
|
|
echo $GITHUB_WORKSPACE/sbt/bin/ >> $GITHUB_PATH
|
|
|
|
- name: Check Code Formatting
|
|
|
|
run: |
|
2023-03-11 06:51:26 +03:00
|
|
|
sbt "scalafmtCheckAll; javafmtCheckAll; scalafmtSbtCheck"
|