Skip to content

Commit fa2e68d

Browse files
5
Signed-off-by: tobiasKaminsky <[email protected]>
1 parent 11e6169 commit fa2e68d

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.github/workflows/build-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
echo "matrix=$FILES" >> "$GITHUB_OUTPUT"
4040
4141
build:
42-
runs-on: ubuntu-24.04
42+
runs-on: [ubuntu-latest, self-hosted]
4343
needs: files
4444

4545
strategy:
@@ -76,6 +76,6 @@ jobs:
7676
*32bit)
7777
PLATFORM="linux/386" ;;
7878
*)
79-
PLATFORM="linux/amd64,linux/arm64" ;;
79+
PLATFORM="linux/amd64,linux/arm64'" ;;
8080
esac
81-
docker build .
81+
docker buildx build --platform "$PLATFORM" . --file Dockerfile

android16/Dockerfile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
FROM ghcr.io/nextcloud/continuous-integration-android-androidbase:latest
22

33
# Android 16 (API 36)
4-
RUN sdkmanager "platforms;android-36"
5-
RUN sdkmanager "system-images;android-36;google_apis;x86_64"
6-
RUN (sleep 5; echo "no") | avdmanager create avd -n android -c 100M -k "system-images;android-36;google_apis;x86_64"
4+
RUN sdkmanager "platforms;android-36" && sdkmanager "system-images;android-36;google_apis;x86_64" && (sleep 5; echo "no") | avdmanager create avd -n android -c 100M -k "system-images;android-36;google_apis;x86_64"

0 commit comments

Comments
 (0)