-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
switch termux docker image provider to a maintained one
- Loading branch information
Showing
2 changed files
with
23 additions
and
10 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
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 |
---|---|---|
|
@@ -19,6 +19,29 @@ on: [push, pull_request] | |
# copypasted between jobs. You'll probably want to read the 'glibc:' task first, | ||
# it's the one that requires the least hacks. | ||
jobs: | ||
bionic: | ||
runs-on: ubuntu-latest | ||
container: termux/termux-docker:x86_64 | ||
steps: | ||
- name: setup | ||
run: | | ||
/entrypoint.sh pkg install -y ninja clang python git | ||
pip install meson | ||
git clone --depth 1 $GITHUB_REF https://github.com/$GITHUB_REPOSITORY | ||
- name: build | ||
run: | | ||
meson setup -Db_sanitize=address,undefined -Dtest_system=true build \ | ||
libobsd | ||
meson compile -C build libobsd | ||
- name: test | ||
run: meson test --no-suite system -C build libobsd | ||
- name: test_system | ||
run: meson test --suite system -C build libobsd || true | ||
- uses: actions/[email protected] | ||
if: always() | ||
with: | ||
name: meson-logs-bionic | ||
path: build/meson-logs | ||
dietlibc: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|