We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1904c72 commit 90bd1d0Copy full SHA for 90bd1d0
.github/workflows/build-all.yml
@@ -47,6 +47,11 @@ jobs:
47
id: impl
48
run: echo "name=$(echo '${{ github.repository }}' | awk -F '/' '{print $2}')" >> $GITHUB_OUTPUT
49
50
+ - name: Install qemu
51
+ run: |
52
+ sudo apt-get update
53
+ sudo apt-get install -y qemu-user-static
54
+
55
- name: Install bowtie
56
uses: bowtie-json-schema/bowtie@main
57
Dockerfile
@@ -1,5 +1,4 @@
1
-FROM --platform=$BUILDPLATFORM gradle:8.12.1-jdk17 AS builder
2
-ARG BUILDPLATFORM
+FROM gradle:8.12.1-jdk17 AS builder
3
WORKDIR /opt/app
4
COPY gradle/libs.versions.toml gradle/
5
COPY settings.gradle.kts .
0 commit comments