The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
467 B
20 lines
467 B
4 years ago
|
name: Cross-only compilation environment
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
pull_request:
|
||
|
|
||
|
jobs:
|
||
|
cross-only-armhf:
|
||
|
runs-on: ubuntu-latest
|
||
|
container: mesonbuild/eoan:latest
|
||
|
steps:
|
||
|
- run: |
|
||
|
apt-get -y purge clang gcc gdc
|
||
|
apt-get -y autoremove
|
||
|
- uses: actions/checkout@v2
|
||
|
- name: Run tests
|
||
|
run: bash -c 'source /ci/env_vars.sh; cd $GITHUB_WORKSPACE; ./run_tests.py $CI_ARGS --cross ubuntu-armhf.txt --cross-only'
|