mirror of https://github.com/zachjs/sv2v.git
88 lines
2.1 KiB
YAML
88 lines
2.1 KiB
YAML
name: Main
|
|
on:
|
|
push:
|
|
branches:
|
|
- '*'
|
|
tags-ignore:
|
|
- v*
|
|
pull_request:
|
|
release:
|
|
types:
|
|
- created
|
|
jobs:
|
|
|
|
build:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os:
|
|
- ubuntu-20.04
|
|
- macOS-10.15
|
|
- windows-2019
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Build
|
|
run: make
|
|
- name: Prepare Artifact
|
|
shell: bash
|
|
run: cp LICENSE NOTICE README.md bin
|
|
- name: Upload Artifact
|
|
uses: actions/upload-artifact@v1
|
|
with:
|
|
name: ${{ runner.os }}
|
|
path: bin
|
|
|
|
test:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os:
|
|
- ubuntu-20.04
|
|
- macOS-10.15
|
|
needs: build
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Install Dependencies (macOS)
|
|
if: runner.os == 'macOS'
|
|
run: brew install shunit2 icarus-verilog
|
|
- name: Install Dependencies (Linux)
|
|
if: runner.os == 'Linux'
|
|
run: sudo apt-get install -y shunit2 iverilog
|
|
- name: Download Artifact
|
|
uses: actions/download-artifact@v1
|
|
with:
|
|
name: ${{ runner.os }}
|
|
path: bin
|
|
- name: Test
|
|
run: |
|
|
chmod +x bin/sv2v
|
|
export PATH="$PATH:$HOME/.local/bin"
|
|
make test
|
|
|
|
release:
|
|
runs-on: ubuntu-20.04
|
|
strategy:
|
|
matrix:
|
|
name: [macOS, Linux, Windows]
|
|
needs: build
|
|
if: github.event_name == 'release'
|
|
steps:
|
|
- name: Download Artifact
|
|
uses: actions/download-artifact@v1
|
|
with:
|
|
name: ${{ matrix.name }}
|
|
path: sv2v-${{ matrix.name }}
|
|
- name: Mark Binary Executable
|
|
run: chmod +x */sv2v*
|
|
- name: Create ZIP
|
|
run: zip -r sv2v-${{ matrix.name }} ./sv2v-${{ matrix.name }}
|
|
- name: Upload Release Asset
|
|
uses: actions/upload-release-asset@v1.0.1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
upload_url: ${{ github.event.release.upload_url }}
|
|
asset_path: ./sv2v-${{ matrix.name }}.zip
|
|
asset_name: sv2v-${{ matrix.name }}.zip
|
|
asset_content_type: application/zip
|