From a13245d7ec7e39726a2003a0cd92e483c44773b8 Mon Sep 17 00:00:00 2001 From: Jan K9f Date: Mon, 28 Apr 2025 07:19:02 +0200 Subject: [PATCH] build(gitea): add rust to build workflow and create rust Dockerfile --- .gitea/workflows/build.yml | 2 +- images/actions/rust/Dockerfile | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 images/actions/rust/Dockerfile diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 3458815..b3746c8 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -33,7 +33,7 @@ jobs: - base strategy: matrix: - language: ["go", "js", "protobuf", "oas", "just", "bun"] + language: ["go", "js", "protobuf", "oas", "just", "bun", "rust"] steps: - name: Login to Registry uses: "docker/login-action@v3" diff --git a/images/actions/rust/Dockerfile b/images/actions/rust/Dockerfile new file mode 100644 index 0000000..06b3d26 --- /dev/null +++ b/images/actions/rust/Dockerfile @@ -0,0 +1,3 @@ +FROM git.kjan.de/actions/runner-basic:latest + +RUN sudo --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sudo sh