-
Notifications
You must be signed in to change notification settings - Fork 2
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
Showing
6 changed files
with
25 additions
and
19 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 |
---|---|---|
|
@@ -3,10 +3,11 @@ jobs: | |
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: aviate-labs/[email protected].2 | ||
- uses: actions/checkout@v3 | ||
- uses: aviate-labs/[email protected].3 | ||
with: | ||
dfx-version: 0.8.1 | ||
install-moc: true | ||
vessel-version: 0.6.2 | ||
- run: for i in test/*.mo ; do moc $(vessel sources) -r $i ; done | ||
dfx-version: 0.12.1 | ||
vessel-version: 0.6.3 | ||
- run: | | ||
make check | ||
make test |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
.PHONY: check test | ||
check: | ||
find src -type f -name '*.mo' -print0 | xargs -0 $(shell vessel bin)/moc $(shell vessel sources 2>/dev/null) --check | ||
test: | ||
find test -type f -name '*.mo' -print0 | xargs -0 $(shell vessel bin)/moc $(shell vessel sources 2>/dev/null) -r |
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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
let upstream = https://github.com/aviate-labs/package-set/releases/download/v0.1.1/package-set.dhall sha256:f1a3f0af31ad92eca20cc829f1fb32ed54e9c6a49257f43c3831732b37bf7559 | ||
let base = https://github.com/internet-computer/base-package-set/releases/download/moc-0.7.4/package-set.dhall sha256:3a20693fc597b96a8c7cf8645fda7a3534d13e5fbda28c00d01f0b7641efe494 | ||
let Package = { name : Text, version : Text, repo : Text, dependencies : List Text } | ||
|
||
let additions = [ | ||
{ name = "array" | ||
, version = "v0.2.1" | ||
, repo = "https://github.com/aviate-labs/array.mo" | ||
, version = "v0.1.1" | ||
, dependencies = [ "base" ] | ||
, dependencies = [ "base-0.7.3" ] : List Text | ||
} | ||
] : List Package | ||
|
||
in upstream # additions | ||
in base # additions |
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
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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
dependencies = [ "base", "array" ], | ||
compiler = None Text | ||
dependencies = [ "base-0.7.3", "array" ], | ||
compiler = Some "0.7.3" | ||
} |