Skip to content

Commit

Permalink
ci: Adds synthesis CI job
Browse files Browse the repository at this point in the history
  • Loading branch information
chaseruskin committed Jul 19, 2023
1 parent 1d9a496 commit 45f3f82
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/synthesis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: synthesis
on: push

jobs:
orbit-docker:
runs-on: ubuntu-latest
container:
image: crus800/orbit-fpga
steps:
- name: Fetch repository
uses: actions/checkout@v3

- name: Log all tool versions
run: |
orbit --version
python --version
quartus_sh --version
- name: Configure orbit profile
run: |
git clone https://github.com/c-rus/orbit-profile.git "$(orbit env ORBIT_HOME)/profiles/c-rus"
orbit config --append include="profiles/c-rus/config.toml"
- name: Synthesize encoder
run |
orbit plan --clean --plugin quartus --top hamm_enc
orbit b -- -g PARITY_BITS=3

0 comments on commit 45f3f82

Please sign in to comment.