Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update CI #41

Merged
merged 6 commits into from
Aug 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,21 @@ jobs:
make
sudo make install

- name: checkout nextpnr
uses: actions/checkout@v4
with:
repository: YosysHQ/nextpnr
ref: master
path: nextpnr
submodules: true

- name: install nextpnr
working-directory: nextpnr
run: |
cmake -DARCH=ice40 -DCMAKE_INSTALL_PREFIX=/usr/local .
make
sudo make install

- name: checkout yosys
uses: actions/checkout@v4
with:
Expand All @@ -100,3 +115,14 @@ jobs:

- name: test
run: cabal run test -- --no-create

- name: demo
run: |
cabal install
bx --FiatLux -s
bx --RgbCounter -s
bx --RgbCycle -s
bx --Hello -s
bx --Echo -s
bx --LedCtrl -s
bx --SpramReverse -s
10 changes: 7 additions & 3 deletions bayeux.cabal
Original file line number Diff line number Diff line change
@@ -1,17 +1,21 @@
cabal-version: 3.0
name: bayeux
version: 0.1.0.0
homepage: https://github.com/dopamane/bayeux
homepage: https://github.com/standardsemiconductor/bayeux
license: MIT
license-file: LICENSE
author: dopamane
maintainer: dwc1295@gmail.com
maintainer: standardsemiconductor@gmail.com
copyright: David Cox
category: Language
build-type: Simple
extra-doc-files: CHANGELOG.md
data-files: data/**/*.pcf

source-repository head
type: git
location: https://github.com/standardsemiconductor/yosys-rtl

library
ghc-options: -Wall
exposed-modules: Bayeux
Expand All @@ -34,7 +38,7 @@ library
other-modules: Paths_bayeux
autogen-modules: Paths_bayeux
build-depends: array
, async
, async >= 2.0
, base
, bytestring
, containers
Expand Down