20adff0071
The cmake CI seemed to reference a few nonexistent targets for docs and tests. Remove the doc generation step and point the test CI script at the generated test program.
11 lines
229 B
Bash
Executable file
11 lines
229 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -eou pipefail
|
|
|
|
./scripts/ci/fmt
|
|
./scripts/ci/lint
|
|
./scripts/ci/build-test
|
|
./scripts/ci/rust-docs
|
|
./scripts/ci/advisory
|
|
./scripts/ci/wasm_tests
|
|
./scripts/ci/js_tests
|
|
./scripts/ci/cmake-build Release static
|