Remove Mac support, replace with Linux AARCH64 support #451
Workflow file for this run
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: BDeploy CI - Linux | |
| on: [push] | |
| jobs: | |
| build: | |
| name: Build and test on Linux | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout from GIT | |
| uses: actions/checkout@v3 | |
| - name: Setup JDK 21 | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 21 | |
| - name: Setup NodeJS | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: '22' | |
| - name: Setup Gradle | |
| uses: gradle/gradle-build-action@v2 | |
| - name: Build and Test | |
| id: build | |
| run: ./gradlew --stacktrace --scan clean build | |
| - name: Upload playwright results | |
| uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: playwright-results | |
| path: ui/webapp/playwright/results | |