mirror of
https://github.com/google/cpu_features.git
synced 2025-04-29 16:03:36 +02:00
36 lines
751 B
YAML
36 lines
751 B
YAML
name: mips 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.
|
|
mips:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
targets: [
|
|
[mips32],
|
|
[mips32el],
|
|
[mips64],
|
|
[mips64el]
|
|
]
|
|
fail-fast: false
|
|
env:
|
|
TARGET: ${{ matrix.targets[0] }}
|
|
CTEST_OUTPUT_ON_FAILURE: 1
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Install Ninja
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install ninja-build
|
|
- name: Build
|
|
run: ./scripts/run_integration.sh build
|
|
- name: Test
|
|
run: ./scripts/run_integration.sh test
|