chore, ci: move nextest install to `rust-upend` image
ci/woodpecker/push/woodpecker Pipeline was successful Details

feat/type-attributes
Tomáš Mládek 2023-07-12 12:42:40 +02:00
parent 6600a2bd7d
commit 7a9aafac5a
2 changed files with 2 additions and 3 deletions

View File

@ -92,7 +92,6 @@ pipeline:
group: test
image: albedo.lan:5000/rust-upend:latest
commands:
- curl -LsSf https://get.nexte.st/latest/linux | tar zxf - -C /usr/local/cargo/bin
- task test:backend
# volumes:
# - rust_registry:/usr/local/cargo

View File

@ -1,4 +1,4 @@
FROM rust:latest
RUN sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d -b /usr/local/bin
RUN cargo install wasm-pack
RUN rustup target add wasm32-unknown-unknown
RUN cargo install wasm-pack && rustup target add wasm32-unknown-unknown
RUN curl -LsSf https://get.nexte.st/latest/linux | tar zxf - -C /usr/local/cargo/bin