-
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
3 changed files
with
26 additions
and
12 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 | ||
/entrypoint.sh pip install meson | ||
git clone --depth 1 -b $GITHUB_REF_NAME \ | ||
https://github.com/$GITHUB_REPOSITORY | ||
- name: build | ||
run: | | ||
meson setup -Dtest_system=true build libobsd | ||
meson compile -C build | ||
- name: test | ||
run: meson test --no-suite system -C build | ||
- name: test_system | ||
run: meson test --suite system -C build || true | ||
- uses: actions/[email protected] | ||
if: always() | ||
with: | ||
name: meson-logs-bionic | ||
path: build/meson-logs | ||
dietlibc: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
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