Skip to content

chore: wip import netbsd libc #82

chore: wip import netbsd libc

chore: wip import netbsd libc #82

Workflow file for this run

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