mirror of
https://github.com/janet-lang/janet
synced 2025-01-02 20:00:26 +00:00
Add verbose errors to ci
This commit is contained in:
parent
641a16c133
commit
8e0340252b
4
.github/workflows/test.yml
vendored
4
.github/workflows/test.yml
vendored
@ -73,7 +73,7 @@ jobs:
|
|||||||
- name: Compile the project
|
- name: Compile the project
|
||||||
run: make clean && make CC=x86_64-w64-mingw32-gcc LD=x86_64-w64-mingw32-gcc UNAME=MINGW RUN=wine
|
run: make clean && make CC=x86_64-w64-mingw32-gcc LD=x86_64-w64-mingw32-gcc UNAME=MINGW RUN=wine
|
||||||
- name: Test the project
|
- name: Test the project
|
||||||
run: make test UNAME=MINGW RUN=wine
|
run: make test UNAME=MINGW RUN=wine VERBOSE=1
|
||||||
|
|
||||||
test-arm-linux:
|
test-arm-linux:
|
||||||
name: Build and test ARM32 cross compilation
|
name: Build and test ARM32 cross compilation
|
||||||
@ -88,4 +88,4 @@ jobs:
|
|||||||
- name: Compile the project
|
- name: Compile the project
|
||||||
run: make RUN="qemu-arm -L /usr/arm-linux-gnueabi/" CC=arm-linux-gnueabi-gcc LD=arm-linux-gnueabi-gcc
|
run: make RUN="qemu-arm -L /usr/arm-linux-gnueabi/" CC=arm-linux-gnueabi-gcc LD=arm-linux-gnueabi-gcc
|
||||||
- name: Test the project
|
- name: Test the project
|
||||||
run: make RUN="qemu-arm -L /usr/arm-linux-gnueabi/" SUBRUN="qemu-arm -L /usr/arm-linux-gnueabi/" test
|
run: make RUN="qemu-arm -L /usr/arm-linux-gnueabi/" SUBRUN="qemu-arm -L /usr/arm-linux-gnueabi/" test VERBOSE=1
|
||||||
|
@ -39,7 +39,7 @@
|
|||||||
(rmrf syspath)
|
(rmrf syspath)
|
||||||
(os/mkdir syspath)
|
(os/mkdir syspath)
|
||||||
(put root-env *syspath* (os/realpath syspath))
|
(put root-env *syspath* (os/realpath syspath))
|
||||||
#(setdyn *out* @"")
|
(setdyn *out* @"")
|
||||||
(assert (empty? (bundle/list)) "initial bundle/list")
|
(assert (empty? (bundle/list)) "initial bundle/list")
|
||||||
(assert (empty? (bundle/topolist)) "initial bundle/topolist")
|
(assert (empty? (bundle/topolist)) "initial bundle/topolist")
|
||||||
|
|
||||||
@ -60,6 +60,8 @@
|
|||||||
# Now install sample-bundle
|
# Now install sample-bundle
|
||||||
(assert-no-error "sample-bundle install" (bundle/install "./examples/sample-bundle"))
|
(assert-no-error "sample-bundle install" (bundle/install "./examples/sample-bundle"))
|
||||||
|
|
||||||
|
(assert-error "" (bundle/install "./examples/sample-dep11111"))
|
||||||
|
|
||||||
(assert (= 3 (length (bundle/list))) "bundles are listed correctly 3")
|
(assert (= 3 (length (bundle/list))) "bundles are listed correctly 3")
|
||||||
(assert (= 3 (length (bundle/topolist))) "bundles are listed correctly 4")
|
(assert (= 3 (length (bundle/topolist))) "bundles are listed correctly 4")
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user