Oh, stupidity really shows..
All checks were successful
Build and push container image / build (push) Successful in 10m51s

This commit is contained in:
toast 2024-03-26 13:04:12 +11:00
parent bd395df66f
commit eddad46100
2 changed files with 5 additions and 8 deletions

View File

@ -9,12 +9,6 @@ jobs:
build: build:
runs-on: ubuntu-22.04-node runs-on: ubuntu-22.04-node
steps: steps:
- name: "Add Cargo registry"
run: |
mkdir -p ~/.cargo && \
printf '[registries.gitea]\nindex = "sparse+https://git.toast-server.net/api/packages/toast/cargo/"\ntoken = "Bearer %s"\n' "${{ secrets.CARGO_TOKEN }}" >> ~/.cargo/config.toml
cat ~/.cargo/config.toml
- name: Set up Docker environment - name: Set up Docker environment
run: | run: |
apt update && apt upgrade -y && apt install -y apt-transport-https ca-certificates curl zstd gnupg lsb-release apt update && apt upgrade -y && apt install -y apt-transport-https ca-certificates curl zstd gnupg lsb-release
@ -44,8 +38,8 @@ jobs:
platforms: linux/amd64 platforms: linux/amd64
push: true push: true
tags: git.toast-server.net/toast/kon:main tags: git.toast-server.net/toast/kon:main
cache-to: type=local,dest=/tmp/.build-cache build-args: |
cache-from: type=local,src=/tmp/.buildx-cache,mode=max CARGO_TOKEN=${{ secrets.CARGO_TOKEN }}
- name: Update Delivery - name: Update Delivery
uses: https://github.com/appleboy/ssh-action@029f5b4aeeeb58fdfe1410a5d17f967dacf36262 # v1.0.3 uses: https://github.com/appleboy/ssh-action@029f5b4aeeeb58fdfe1410a5d17f967dacf36262 # v1.0.3

View File

@ -1,8 +1,11 @@
FROM rust:1.77-alpine3.19@sha256:4a7925c3974fab3fb68b3f4d93d1a4a36cb201f9f87b01014def219b125f1960 AS compiler FROM rust:1.77-alpine3.19@sha256:4a7925c3974fab3fb68b3f4d93d1a4a36cb201f9f87b01014def219b125f1960 AS compiler
ENV RUSTFLAGS="-C target-feature=-crt-static" ENV RUSTFLAGS="-C target-feature=-crt-static"
ARG CARGO_TOKEN
RUN apk add --no-cache openssl-dev musl-dev RUN apk add --no-cache openssl-dev musl-dev
WORKDIR /usr/src/kon WORKDIR /usr/src/kon
COPY . . COPY . .
RUN mkdir -p .cargo && \
printf '[registries.gitea]\nindex = "sparse+https://git.toast-server.net/api/packages/toast/cargo/"\ntoken = "Bearer %s"\n' "$CARGO_TOKEN" >> .cargo/config.toml
RUN cargo fetch && cargo build -r RUN cargo fetch && cargo build -r
FROM alpine:3.19@sha256:c5b1261d6d3e43071626931fc004f70149baeba2c8ec672bd4f27761f8e1ad6b FROM alpine:3.19@sha256:c5b1261d6d3e43071626931fc004f70149baeba2c8ec672bd4f27761f8e1ad6b