chore: wip import netbsd libc #82
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
cc: [gcc, clang] | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install build dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install build-essential | |
sudo apt-get install clang | |
- name: Build with ${{ matrix.cc }} | |
run: | | |
autoreconf -i -f | |
CC=${{ matrix.cc }} ./configure | |
CC=${{ matrix.cc }} make | |
testsuite: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install build dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install build-essential | |
- name: Run testsuite | |
run: | | |
autoreconf -i -f | |
./configure | |
TEST_ENV=some_value make check |