summaryrefslogtreecommitdiff
path: root/.github/workflows/nonative.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/nonative.yml')
-rw-r--r--.github/workflows/nonative.yml19
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/nonative.yml b/.github/workflows/nonative.yml
new file mode 100644
index 000000000..59386c530
--- /dev/null
+++ b/.github/workflows/nonative.yml
@@ -0,0 +1,19 @@
+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'