mirror of
https://github.com/yaml/libyaml
synced 2026-06-08 18:28:36 +00:00
Use GitHub Actions (#184)
This commit is contained in:
committed by
GitHub
parent
0032321756
commit
9deee01508
@@ -0,0 +1,57 @@
|
||||
name: linux/mac
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ '*' ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
|
||||
build:
|
||||
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
compiler:
|
||||
- gcc
|
||||
- clang
|
||||
os:
|
||||
- ubuntu-latest
|
||||
- macOS-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- run: env | sort
|
||||
- name: Install software
|
||||
run: |
|
||||
if [[ '${{ matrix.os }}' == macOS-latest ]]; then
|
||||
brew install automake coreutils
|
||||
fi
|
||||
- name: Fetch branches
|
||||
run: |
|
||||
git config remote.origin.fetch +refs/heads/*:refs/remotes/origin/*
|
||||
git fetch --unshallow
|
||||
|
||||
- run: ./bootstrap
|
||||
- run: ./configure
|
||||
- run: make
|
||||
- run: make test-all
|
||||
|
||||
- run: |
|
||||
git clean -d -x -f
|
||||
rm -fr tests/run-test-suite
|
||||
git worktree prune
|
||||
|
||||
- name: Compiler version
|
||||
run: ${{ matrix.compiler }} --version
|
||||
env:
|
||||
CC: ${{ matrix.compiler }}
|
||||
- run: cmake .
|
||||
env:
|
||||
CC: ${{ matrix.compiler }}
|
||||
- run: make
|
||||
env:
|
||||
CC: ${{ matrix.compiler }}
|
||||
- run: make test
|
||||
@@ -18,6 +18,7 @@ before_install:
|
||||
# Travis branch-specific clone problem workaround:
|
||||
- git config remote.origin.fetch +refs/heads/*:refs/remotes/origin/*
|
||||
- git fetch
|
||||
- env | sort
|
||||
|
||||
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
||||
pip install --user scikit-ci-addons==0.15.0;
|
||||
|
||||
Reference in New Issue
Block a user