aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/build.yml
blob: 143c59466cd1fc85e0aabee8463d16430f88694c (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: Build

on:
    push:
        branches:
            - "*"
        paths-ignore:
            - ".gitignore"
    pull_request:
        branches:
            - "*"
        paths-ignore:
            - ".gitignore"
    workflow_dispatch:
permissions: write-all
jobs:
    build:
        runs-on: ubuntu-latest
        name: "Build and test"
        steps:
            -   name: Checkout code
                uses: actions/checkout@v4
            -   uses: ./.github/actions/setup-normal-workspace
            -   name: Build with Gradle
                run: ./gradlew assemble -x test --stacktrace
            -   uses: actions/upload-artifact@v3
                name: Upload development build
                with:
                    name: "Development Build"
                    path: build/libs/*.jar
            -   name: Test with Gradle
                run: ./gradlew test
            -   uses: actions/upload-artifact@v3
                name: "Upload test report"
                if: ${{ !cancelled() }}
                with:
                    name: "Test Results"
                    path: versions/1.8.9/build/reports/tests/test/
    #detekt:
    #    name: Run detekt
    #    runs-on: ubuntu-latest

    #    steps:
    #        -   name: Checkout code
    #            uses: actions/checkout@v4
    #        -   uses: ./.github/actions/setup-normal-workspace
    #        # detektMain is a LOT slower than detekt, but it does type analysis
    #        -   name: Run detekt main (w/typing analysis)
    #            run: |
    #                ./gradlew detektMain --stacktrace
    #        -   name: Annotate detekt failures
    #            if: ${{ !cancelled() }}
    #            run: |
    #                chmod +x .github/scripts/process_detekt_sarif.sh
    #                ./.github/scripts/process_detekt_sarif.sh versions/1.8.9/build/reports/detekt/main.sarif
    

    preprocess:
        runs-on: ubuntu-latest
        name: "Build multi version"
        steps:
            -   name: Checkout code
                uses: actions/checkout@v4
            -   uses: ./.github/actions/setup-normal-workspace
            -   name: Enable preprocessor
                run: |
                    mkdir -p .gradle
                    echo skyhanni.multi-version=preprocess-only > .gradle/private.properties
            -   name: Build with Gradle
                run: ./gradlew build --stacktrace