Skip to content

Commit

Permalink
messing around and finding out pt5 the understanding more
Browse files Browse the repository at this point in the history
  • Loading branch information
Dj-Codeman committed Feb 16, 2024
1 parent 9edc30b commit 3f69a48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Dockerfile.build.static
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN apk update && \
apk add rustup git gcc lld openssl1.1-compat-dev openssl1.1-compat-libs-static && \
rustup-init -y && \
source "$HOME/.cargo/env" && \
RUSTFLAGS="-C link-args=-fuse-ld=lld" cargo build && \
RUSTFLAGS="-C link-args=-fuse-ld=lld" cargo build --release && \
strip target/debug/dog

FROM scratch AS export-stage
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
uses: docker/setup-buildx-action@v3
- name: Build
run: |
docker buildx build --platform "linux/amd64,linux/arm64" --file Dockerfile.build.static --output out .
docker buildx build --platform "linux/amd64,linux/arm64" --file .github/workflows/Dockerfile.build.static --output out .
mv out/**/doge_* out/
rm -r out/linux*
- name: Upload to artifact
Expand Down

0 comments on commit 3f69a48

Please sign in to comment.