Skip to content

Commit

Permalink
Increase attempts and run cargo with one job
Browse files Browse the repository at this point in the history
  • Loading branch information
albin-mullvad committed Sep 5, 2024
1 parent df592aa commit 428f4eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/android-app-multiple.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
strategy:
fail-fast: false
matrix:
attempt: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]
attempt: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30]

Check failure on line 43 in .github/workflows/android-app-multiple.yml

View workflow job for this annotation

GitHub Actions / check-formatting

43:121 [line-length] line too long (128 > 120 characters)
steps:
# Fix for HOME path overridden by GH runners when building in containers, see:
# https://github.com/actions/runner/issues/863
Expand Down
2 changes: 1 addition & 1 deletion build-apk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ for ARCHITECTURE in ${ARCHITECTURES:-x86_64}; do
esac

echo "Building mullvad-daemon for $TARGET"
cargo build "${CARGO_ARGS[@]}" --target "$TARGET" --package mullvad-jni
cargo build "${CARGO_ARGS[@]}" --target "$TARGET" --package mullvad-jni -j 1

STRIP_TOOL="${NDK_TOOLCHAIN_DIR}/llvm-strip"
TARGET_LIB_PATH="$SCRIPT_DIR/android/app/build/extraJni/$ABI/libmullvad_jni.so"
Expand Down

0 comments on commit 428f4eb

Please sign in to comment.