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.
25 lines
624 B
25 lines
624 B
5 years ago
|
name: OS Compatibility Tests
|
||
|
|
||
|
on: [push, pull_request]
|
||
|
|
||
|
jobs:
|
||
|
xenial:
|
||
|
name: Ubuntu 16.04 (xenial)
|
||
|
runs-on: ubuntu-16.04
|
||
|
steps:
|
||
|
- uses: actions/checkout@v1
|
||
|
- name: Install Dependencies
|
||
|
run: |
|
||
|
sudo apt update -yq
|
||
|
sudo apt install -yq --no-install-recommends g++ gfortran ninja-build gobjc gobjc++ zlib1g-dev
|
||
|
- name: Install ninja-build tool
|
||
|
uses: seanmiddleditch/gha-setup-ninja@v1
|
||
|
- name: Python version
|
||
|
run: python3 --version
|
||
|
- name: Ninja version
|
||
|
run: ninja --version
|
||
|
- name: Run tests
|
||
|
run: python3 run_tests.py
|
||
|
env:
|
||
|
CI: '1'
|