aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/arm_linux.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/arm_linux.yml')
-rw-r--r--.github/workflows/arm_linux.yml31
1 files changed, 31 insertions, 0 deletions
diff --git a/.github/workflows/arm_linux.yml b/.github/workflows/arm_linux.yml
new file mode 100644
index 0000000..2272188
--- /dev/null
+++ b/.github/workflows/arm_linux.yml
@@ -0,0 +1,31 @@
+name: arm Linux
+
+on:
+ push:
+ pull_request:
+ schedule:
+ # min hours day(month) month day(week)
+ - cron: '0 0 7,22 * *'
+
+jobs:
+ # Building using the github runner environement directly.
+ arm:
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ targets: [
+ [arm-linux-gnueabihf],
+ [armv8l-linux-gnueabihf],
+ [arm-linux-gnueabi],
+ [armeb-linux-gnueabihf],
+ [armeb-linux-gnueabi]
+ ]
+ fail-fast: false
+ env:
+ TARGET: ${{ matrix.targets[0] }}
+ steps:
+ - uses: actions/checkout@v2
+ - name: Build
+ run: make --directory=ci ${TARGET}_build
+ - name: Test
+ run: make --directory=ci ${TARGET}_test