Skip to content

Commit

Permalink
Add a CI job for build testing
Browse files Browse the repository at this point in the history
  • Loading branch information
povik committed Jun 11, 2024
1 parent a69be51 commit 3017440
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build-test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build test
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Install Dependencies
shell: bash
run: |
sudo apt-get update
sudo apt-get install -y cmake build-essential libfmt-dev yosys
- uses: YosysHQ/setup-oss-cad-suite@v3
- uses: actions/checkout@v3
with:
submodules: 'recursive'
fetch-depth: 0
- run: |
TARGET=build/slang.so ./build.sh

0 comments on commit 3017440

Please sign in to comment.