Set up continuous integration in Forgejo #75
2 changed files with 23 additions and 22 deletions
|
@ -17,7 +17,8 @@ jobs:
|
|||
- run: RUSTFLAGS='-D warnings' trunk build
|
||||
|
||||
# run the automated tests, reporting success if the tests pass and were built
|
||||
# without warnings
|
||||
# without warnings. the examples are run as tests, because we've configured
|
||||
# each example target with `test = true` and `harness = false` in Cargo.toml
|
||||
test:
|
||||
runs-on: docker
|
||||
container:
|
||||
|
@ -27,24 +28,4 @@ jobs:
|
|||
working-directory: app-proto
|
||||
steps:
|
||||
- uses: https://code.forgejo.org/actions/checkout@v4
|
||||
- run: RUSTFLAGS='-D warnings' cargo test
|
||||
|
||||
# run the Cargo examples, as described here:
|
||||
#
|
||||
# Karol Kuczmarski. "Add examples to your Rust libraries"
|
||||
# http://xion.io/post/code/rust-examples.html
|
||||
#
|
||||
# report success if the examples build and run without errors or warnings
|
||||
run-examples:
|
||||
runs-on: docker
|
||||
container:
|
||||
image: cimg/rust:1.85-node
|
||||
defaults:
|
||||
run:
|
||||
working-directory: app-proto
|
||||
steps:
|
||||
- uses: https://code.forgejo.org/actions/checkout@v4
|
||||
- run: RUSTFLAGS='-D warnings' cargo run --example irisawa-hexlet
|
||||
- run: RUSTFLAGS='-D warnings' cargo run --example three-spheres
|
||||
- run: RUSTFLAGS='-D warnings' cargo run --example point-on-sphere
|
||||
- run: RUSTFLAGS='-D warnings' cargo run --example kaleidocycle
|
||||
- run: RUSTFLAGS='-D warnings' cargo test
|
|
@ -50,3 +50,23 @@ wasm-bindgen-test = "0.3.34"
|
|||
[profile.release]
|
||||
opt-level = "s" # optimize for small code size
|
||||
debug = true # include debug symbols
|
||||
|
||||
[[example]]
|
||||
name = "irisawa-hexlet"
|
||||
test = true
|
||||
harness = false
|
||||
glen marked this conversation as resolved
|
||||
|
||||
[[example]]
|
||||
name = "kaleidocycle"
|
||||
test = true
|
||||
harness = false
|
||||
|
||||
[[example]]
|
||||
name = "point-on-sphere"
|
||||
test = true
|
||||
harness = false
|
||||
|
||||
[[example]]
|
||||
name = "three-spheres"
|
||||
test = true
|
||||
harness = false
|
||||
|
|
Loading…
Add table
Reference in a new issue
OK, so if I understand this is the setting that makes
cargo test
also run e.g. theirisawa-hexlet
example. Given that:(A) Is the run-examples shell script now redundant, and should it be removed in this PR?
(B) Given that the parameters for all four examples are exactly the same, is there any way for this manifest file to just say that test should be true and harness false for everything in the examples directory? That seems likely to remain the case for the foreseeable future, and would have the advantage that we could add another example test by just creating a file in the examples directory.
(A) Right now, my main use case for
run-examples
is to get the printed output of the examples in a known order with no extra output mixed in. When we address #77, I plan to turn this into a script for updating the recorded output that we're testing against. Sincecargo test
doesn't really seem designed for this, I'd recommend keepingrun-examples
for now.(B) When we address #77, we're probably going to bring the example test runs back into the test harness, where they'll be called in a different way. Thus, streamlining the current call methods may not be useful in the long term.