0a83083aca
This made sense when the syscall ABI was stable, but the syscall CI has been failing for years by now. It's better to have a minimal CI enforcing unit tests (todo) pass and all arches compile. All integration tests should instead be done in acid.
17 lines
224 B
YAML
17 lines
224 B
YAML
image: "redoxos/redoxer"
|
|
|
|
stages:
|
|
- build
|
|
|
|
cache:
|
|
paths:
|
|
- target/
|
|
|
|
build:linux:
|
|
stage: build
|
|
script: cargo +nightly build --verbose
|
|
|
|
build:redox:
|
|
stage: build
|
|
script: redoxer build --verbose
|