Allowed worker creation from blob (hopefully fixing comparison issue) #54
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: Linux (Aarch64) | |
on: [push] | |
jobs: | |
build: | |
name: Build and test on Linux Aarch64 | |
runs-on: ubuntu-24.04-arm | |
steps: | |
- name: Checkout from GIT | |
uses: actions/checkout@v3 | |
- name: Setup JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version-file: .java-version | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
- name: Build and Test | |
id: build | |
run: ./gradlew --stacktrace --scan clean build -x retypeUserDoc | |
- name: Upload dist zip | |
uses: actions/upload-artifact@v4 | |
with: | |
name: snapshot-dist-zip | |
path: minion/build/distributions | |
- name: Upload playwright results | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: playwright-results | |
path: ui/webapp/playwright/results | |