Merge branch 'master' of github.com:steveicarus/iverilog
This commit is contained in:
commit
b7306001ab
|
|
@ -6,6 +6,34 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
|
mac:
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
os: [
|
||||||
|
'10.15'
|
||||||
|
]
|
||||||
|
runs-on: macos-${{ matrix.os }}
|
||||||
|
name: '🍏 macos ${{ matrix.os }}'
|
||||||
|
steps:
|
||||||
|
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
brew install bison
|
||||||
|
|
||||||
|
- name: Build, install and check
|
||||||
|
run: |
|
||||||
|
export PATH="/usr/local/opt/bison/bin:$PATH"
|
||||||
|
autoconf
|
||||||
|
./configure
|
||||||
|
sudo make install
|
||||||
|
make check
|
||||||
|
|
||||||
|
- name: Test
|
||||||
|
run: ./.github/test.sh
|
||||||
|
|
||||||
|
|
||||||
lin:
|
lin:
|
||||||
strategy:
|
strategy:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue