File tree 2 files changed +32
-4
lines changed
2 files changed +32
-4
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ name : Android - Wrapper build
3
+ on :
4
+ workflow_dispatch :
5
+ pull_request :
6
+
7
+ permissions : {}
8
+
9
+ jobs :
10
+ build-app :
11
+ name : Build app (using wrapper)
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - name : Checkout repository
15
+ uses : actions/checkout@v4
16
+ with :
17
+ submodules : true
18
+
19
+ - name : Checkout wireguard-go-rs recursively
20
+ run : |
21
+ git config --global --add safe.directory '*'
22
+ git submodule update --init --recursive --depth=1 wireguard-go-rs
23
+
24
+ - name : Install podman
25
+ shell : bash
26
+ run : |
27
+ sudo apt-get update
28
+ sudo apt-get install podman
29
+
30
+ - name : Run build script
31
+ shell : bash
32
+ run : ./building/containerized-build.sh android --dev-build
Original file line number Diff line number Diff line change 55
55
set -x
56
56
exec " $CONTAINER_RUNNER " run --rm -it \
57
57
-v " $REPO_DIR :$REPO_MOUNT_TARGET :Z" \
58
- -v " $CARGO_TARGET_VOLUME_NAME :/cargo-target:Z" \
59
- -v " $CARGO_REGISTRY_VOLUME_NAME :/root/.cargo/registry:Z" \
60
- " ${optional_gradle_cache_volume[@]} " \
61
- " ${optional_android_credentials_volume[@]} " \
62
58
" $container_image_name " bash -c " $optional_mold $* "
You can’t perform that action at this time.
0 commit comments