-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b31493c
commit 61fa021
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,8 @@ env: | |
SKIP: ormolu,format-juvix-files,typecheck-juvix-examples | ||
VAMPIRREPO: anoma/vamp-ir | ||
VAMPIRVERSION: v0.1.3 | ||
GEBREPO: anoma/geb | ||
GEBVERSION: v0.6.0 | ||
|
||
jobs: | ||
pre-commit: | ||
|
@@ -113,6 +115,20 @@ jobs: | |
run: | | ||
vamp-ir --version | ||
- name: Install Geb-lisp for testing generated Lisp | ||
uses: jaxxstorm/[email protected] | ||
with: | ||
repo: ${{ env.GEBREPO }} | ||
platform: linux | ||
tag: ${{ env.GEBVERSION }} | ||
chmod: 0755 | ||
rename-to: geb.image | ||
|
||
- name: Test Geb binary | ||
shell: bash | ||
run: | | ||
geb.image --version | ||
- name: Make runtime | ||
run: | | ||
cd main | ||
|
@@ -313,6 +329,20 @@ jobs: | |
run: | | ||
vamp-ir --version | ||
- name: Install Geb for testing | ||
uses: jaxxstorm/[email protected] | ||
with: | ||
repo: ${{ env.GEBREPO }} | ||
platform: darwin | ||
tag: ${{ env.GEBVERSION }} | ||
chmod: 0755 | ||
rename-to: geb.image | ||
|
||
- name: Test Geb binary | ||
shell: bash | ||
run: | | ||
geb.image --version | ||
- name: Install and test Juvix | ||
if: ${{ success() }} | ||
run: | | ||
|