Skip to content

Commit

Permalink
fix github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jjts committed Oct 24, 2023
1 parent c0bc2ab commit bdedc19
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,20 +94,26 @@ jobs:
run: nix-shell --run "make clean"
- name: setup init_mem
run: nix-shell --run "make setup"
- name: build firmware
run: nix-shell "make -C ../iob_soc_V* fw-build"
- name: cyclonev test
run: make -C ../iob_soc_V* fpga-test BOARD=CYCLONEV-GT-DK
# No init mem
- name: clean
run: nix-shell --run "make clean"
- name: setup
run: nix-shell --run "make setup INIT_MEM=0"
- name: build firmware
run: nix-shell "make -C ../iob_soc_V* fw-build"
- name: cyclonev test
run: make -C ../iob_soc_V* fpga-test BOARD=CYCLONEV-GT-DK
# No init mem and Ext mem
- name: clean
run: nix-shell --run "make clean"
- name: setup ext_mem
run: nix-shell --run "make setup INIT_MEM=0 USE_EXTMEM=1"
- name: build firmware
run: nix-shell "make -C ../iob_soc_V* fw-build"
- name: cyclonev test
run: make -C ../iob_soc_V* fpga-test BOARD=CYCLONEV-GT-DK

Expand All @@ -126,20 +132,26 @@ jobs:
run: nix-shell --run "make clean"
- name: setup init_mem
run: nix-shell --run "make setup"
- name: build firmware
run: nix-shell "make -C ../iob_soc_V* fw-build"
- name: ku040 test
run: make -C ../iob_soc_V* fpga-test BOARD=AES-KU040-DB-G
# No init mem
- name: clean
run: nix-shell --run "make clean"
- name: setup
run: nix-shell --run "make setup INIT_MEM=0"
- name: build firmware
run: nix-shell "make -C ../iob_soc_V* fw-build"
- name: ku040 test
run: make -C ../iob_soc_V* fpga-test BOARD=AES-KU040-DB-G
# No init mem and Ext mem
- name: clean
run: nix-shell --run "make clean"
- name: setup ext_mem
run: nix-shell --run "make setup INIT_MEM=0 USE_EXTMEM=1"
- name: build firmware
run: nix-shell "make -C ../iob_soc_V* fw-build"
- name: ku040 test
run: make -C ../iob_soc_V* fpga-test BOARD=AES-KU040-DB-G

Expand Down

0 comments on commit bdedc19

Please sign in to comment.