aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/build.yml
blob: b048e5b5c0d376bd89ad8b3e6190ffccf2e8a40c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# SPDX-FileCopyrightText: 2023 Linnea Gräf <nea@nea.moe>
#
# SPDX-License-Identifier: CC0-1.0

name: Build
on:
    - push
    - pull_request

jobs:
    build:
        name: Test
        runs-on: ubuntu-latest
        steps:
            -   uses: actions/checkout@v4
                name: Checkout repository
                with:
                    fetch-tags: true
                    fetch-depth: 0
            -   name: Set up JDK 21
                uses: actions/setup-java@v4
                with:
                    distribution: temurin
                    java-version: 21
            -   name: Set up gradle cache
                uses: gradle/actions/setup-gradle@v3
            -   name: Build with gradle
                run: ./gradlew clean test remapJar --stacktrace
            -   name: Upload build artifact
                uses: actions/upload-artifact@v3
                with:
                    path: build/libs/Firmament-*.jar
            -   name: Move build artifact around and print check sum
                run: |
                    rm -f build/libs/*sources*.jar
                    sha256sum build/libs/*.jar
            -   name: Upload to discord
                run: |
                    curl "$WEBHOOK_URL" -X POST -H "Content-type: multipart/form-data" --form "files[0]=@$(echo build/libs/*.jar)"
                env:
                    WEBHOOK_URL: ${{ secrets.WEBHOOK_URL }}