123456789101112131415161718192021222324252627282930 |
- stages:
- - build
- - test
-
- before_script:
- - git submodule init
- - git submodule update
-
- build:
- stage: build
- script:
- - make
-
- run:
- stage: test
- script:
- - make
- - echo "exit()" | ./sol r programs/interp.sol
-
- test_boot:
- stage: test
- script:
- - make
- - ./sol r programs/test.sol
-
- all_tests:
- stage: test
- script:
- - make
- - make test
|