diff options
author | Linnea Gräf <nea@nea.moe> | 2024-11-26 22:26:05 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-11-26 22:26:05 +0100 |
commit | 2c4ec2225d9b7ceae1d7aafc7b0a929661072ec9 (patch) | |
tree | 8e8c3398cbf861ebc3a1f90abb03f022e9e0a8ac /.github/workflows | |
parent | 330e928697d6d3df6d837b7ef2b66e329592eeca (diff) | |
download | reproduction-infinite-compile-2c4ec2225d9b7ceae1d7aafc7b0a929661072ec9.tar.gz reproduction-infinite-compile-2c4ec2225d9b7ceae1d7aafc7b0a929661072ec9.tar.bz2 reproduction-infinite-compile-2c4ec2225d9b7ceae1d7aafc7b0a929661072ec9.zip |
wf
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..e1f2d21 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,17 @@ +on: + - push +jobs: + compile: + steps: + - uses: actions/checkout@v4 + - name: Set up JDK 17 for x64 + uses: actions/setup-java@v4 + with: + java-version: '17' + distribution: 'temurin' + - uses: gradle/actions/setup-gradle@v4 + - run: | + ./gradlew build + name: This will infinitely hang + runs-on: ubuntu-latest + |