Merge pull request #1269 from DimensionDev/dependabot/gradle/bouncyca… #188
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Desktop CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - release | |
| - develop | |
| tags: | |
| - "**" | |
| paths-ignore: | |
| - "**.md" | |
| - "**.yml" | |
| pull_request: | |
| branches: | |
| - master | |
| - release | |
| - develop | |
| jobs: | |
| build: | |
| runs-on: [macos-latest] | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: yumis-coconudge/clean-workspace-action@v1 | |
| - uses: actions/checkout@v3 | |
| with: | |
| submodules: true | |
| - name: Set up JDK | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: "zulu" | |
| java-version: 21 | |
| # Build with Gradle | |
| - name: Build with Gradle | |
| env: | |
| BUILD_NUMBER: ${{github.run_number}} | |
| BUILD_VERSION: ${{github.ref_name}} | |
| run: ./gradlew :desktop:build :desktop:check --stacktrace |