aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorLinnea Gräf <nea@nea.moe>2024-11-26 22:26:05 +0100
committerLinnea Gräf <nea@nea.moe>2024-11-26 22:26:05 +0100
commit2c4ec2225d9b7ceae1d7aafc7b0a929661072ec9 (patch)
tree8e8c3398cbf861ebc3a1f90abb03f022e9e0a8ac /.github/workflows
parent330e928697d6d3df6d837b7ef2b66e329592eeca (diff)
downloadreproduction-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.yml17
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
+