aboutsummaryrefslogtreecommitdiffstats
path: root/packages/zora-rs/.travis.yml
diff options
context:
space:
mode:
authorMatt Strapp <matt@mattstrapp.net>2024-04-05 16:56:02 -0500
committerMatt Strapp <matt@mattstrapp.net>2024-04-06 08:47:20 -0500
commit8a635a8e5bf8d23994d30d7d90b0318c27246a5d (patch)
tree254f145153b122190449f8701e4f6282eb9faf20 /packages/zora-rs/.travis.yml
parentDo not actually override the UI yet (diff)
downloadzorascript-8a635a8e5bf8d23994d30d7d90b0318c27246a5d.tar
zorascript-8a635a8e5bf8d23994d30d7d90b0318c27246a5d.tar.gz
zorascript-8a635a8e5bf8d23994d30d7d90b0318c27246a5d.tar.bz2
zorascript-8a635a8e5bf8d23994d30d7d90b0318c27246a5d.tar.lz
zorascript-8a635a8e5bf8d23994d30d7d90b0318c27246a5d.tar.xz
zorascript-8a635a8e5bf8d23994d30d7d90b0318c27246a5d.tar.zst
zorascript-8a635a8e5bf8d23994d30d7d90b0318c27246a5d.zip
Lint
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to 'packages/zora-rs/.travis.yml')
-rw-r--r--packages/zora-rs/.travis.yml69
1 files changed, 0 insertions, 69 deletions
diff --git a/packages/zora-rs/.travis.yml b/packages/zora-rs/.travis.yml
deleted file mode 100644
index 7a91325..0000000
--- a/packages/zora-rs/.travis.yml
+++ /dev/null
@@ -1,69 +0,0 @@
-language: rust
-sudo: false
-
-cache: cargo
-
-matrix:
- include:
-
- # Builds with wasm-pack.
- - rust: beta
- env: RUST_BACKTRACE=1
- addons:
- firefox: latest
- chrome: stable
- before_script:
- - (test -x $HOME/.cargo/bin/cargo-install-update || cargo install cargo-update)
- - (test -x $HOME/.cargo/bin/cargo-generate || cargo install --vers "^0.2" cargo-generate)
- - cargo install-update -a
- - curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh -s -- -f
- script:
- - cargo generate --git . --name testing
- # Having a broken Cargo.toml (in that it has curlies in fields) anywhere
- # in any of our parent dirs is problematic.
- - mv Cargo.toml Cargo.toml.tmpl
- - cd testing
- - wasm-pack build
- - wasm-pack test --chrome --firefox --headless
-
- # Builds on nightly.
- - rust: nightly
- env: RUST_BACKTRACE=1
- before_script:
- - (test -x $HOME/.cargo/bin/cargo-install-update || cargo install cargo-update)
- - (test -x $HOME/.cargo/bin/cargo-generate || cargo install --vers "^0.2" cargo-generate)
- - cargo install-update -a
- - rustup target add wasm32-unknown-unknown
- script:
- - cargo generate --git . --name testing
- - mv Cargo.toml Cargo.toml.tmpl
- - cd testing
- - cargo check
- - cargo check --target wasm32-unknown-unknown
- - cargo check --no-default-features
- - cargo check --target wasm32-unknown-unknown --no-default-features
- - cargo check --no-default-features --features console_error_panic_hook
- - cargo check --target wasm32-unknown-unknown --no-default-features --features console_error_panic_hook
- - cargo check --no-default-features --features "console_error_panic_hook wee_alloc"
- - cargo check --target wasm32-unknown-unknown --no-default-features --features "console_error_panic_hook wee_alloc"
-
- # Builds on beta.
- - rust: beta
- env: RUST_BACKTRACE=1
- before_script:
- - (test -x $HOME/.cargo/bin/cargo-install-update || cargo install cargo-update)
- - (test -x $HOME/.cargo/bin/cargo-generate || cargo install --vers "^0.2" cargo-generate)
- - cargo install-update -a
- - rustup target add wasm32-unknown-unknown
- script:
- - cargo generate --git . --name testing
- - mv Cargo.toml Cargo.toml.tmpl
- - cd testing
- - cargo check
- - cargo check --target wasm32-unknown-unknown
- - cargo check --no-default-features
- - cargo check --target wasm32-unknown-unknown --no-default-features
- - cargo check --no-default-features --features console_error_panic_hook
- - cargo check --target wasm32-unknown-unknown --no-default-features --features console_error_panic_hook
- # Note: no enabling the `wee_alloc` feature here because it requires
- # nightly for now.