-
Notifications
You must be signed in to change notification settings - Fork 339
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add container wrapper android build workflow
- Loading branch information
1 parent
6c61ed5
commit aad00e9
Showing
2 changed files
with
32 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
--- | ||
name: Android - Wrapper build | ||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
|
||
permissions: {} | ||
|
||
jobs: | ||
build-app: | ||
name: Build app (using wrapper) | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
|
||
- name: Checkout wireguard-go-rs recursively | ||
run: | | ||
git config --global --add safe.directory '*' | ||
git submodule update --init --recursive --depth=1 wireguard-go-rs | ||
- name: Install podman | ||
shell: bash | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install podman | ||
- name: Run build script | ||
shell: bash | ||
run: ./building/containerized-build.sh android --dev-build |
This file contains 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