Switch to using webhook_bridge instead of lighthouse for triggering the CI.
Some checks failed
format Build format has succeeded
clippy Build clippy has failed
rust-test Build rust-test has failed

This commit is contained in:
Tom Alexander
2024-09-30 19:05:48 -04:00
parent 5c02a28a66
commit 2134db0dc1
8 changed files with 124 additions and 126 deletions

View File

@@ -1,4 +1,4 @@
FROM rustlang/rust:nightly-alpine3.19 AS builder
FROM rustlang/rust:nightly-alpine3.20 AS builder
RUN apk add --no-cache musl-dev pkgconf pipewire-dev clang-dev
@@ -8,6 +8,6 @@ COPY . .
# TODO: Add static build, which currently errors due to proc_macro. RUSTFLAGS="-C target-feature=+crt-static"
RUN CARGO_TARGET_DIR=/target cargo build --profile release-lto
FROM alpine:3.19 AS runner
FROM alpine:3.20 AS runner
COPY --from=builder /target/release-lto/ta_waybar_pipewire /usr/bin/

View File

@@ -1,4 +1,4 @@
FROM rustlang/rust:nightly-alpine3.19 AS builder
FROM rustlang/rust:nightly-alpine3.20 AS builder
RUN apk add --no-cache musl-dev pkgconf pipewire-dev clang-dev
RUN cargo install --locked --no-default-features --features ci-autoclean cargo-cache