Skip to content

Commit

Permalink
CI
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszcz committed May 21, 2024
1 parent 78cd695 commit b295c2d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,11 @@ jobs:
cd main
just ${{ env.JUST_ARGS }} build runtime
- name: Test Rust runtime
run: |
cd main/runtime/rust
cargo test --release
# We use the options:
# - -fhide-source-paths
# - -fwrite-ide-info -hiedir=.hie
Expand Down
6 changes: 5 additions & 1 deletion runtime/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,16 @@
export

.PHONY: all
all: juvix_c
all: juvix_c juvix_rust

.PHONY: juvix_c
juvix_c:
cd c && $(MAKE) -j 4 -s

.PHONY: juvix_rust
juvix_rust:
cd rust && cargo build --release

.PHONY: clean
clean:
cd c && $(MAKE) clean
Expand Down

0 comments on commit b295c2d

Please sign in to comment.