-
Notifications
You must be signed in to change notification settings - Fork 381
36 lines (35 loc) · 1010 Bytes
/
cron.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: CICron
on:
schedule:
- cron: '0 0 * * *'
jobs:
build:
name: Multi-Arch Cron Build
runs-on: ubuntu-latest
if: "!contains(github.ref, 'coverity_scan')"
strategy:
matrix:
DOCKER_IMAGE: [
"ubuntu-20.04.arm32v7",
"ubuntu-20.04.arm64v8",
"fedora-32.ppc64le"
]
steps:
- name: Setup QEMU
run: |
sudo apt-get update
sudo apt-get install qemu binfmt-support qemu-user-static
docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
- name: Check out repository
uses: actions/checkout@v2
- name: Launch Action
uses:
tpm2-software/ci/runCI@main
with:
PROJECT_NAME: ${{ github.event.repository.name }}
DOCKER_IMAGE: ${{ matrix.docker_image }}
CC: ${{ matrix.compiler }}
MULTIARCH_BUILD: true
- name: failure
if: ${{ failure() }}
run: cat build/test-suite.log || true