From 8224a609c5df7f25a0acec39de57fccc27d90a13 Mon Sep 17 00:00:00 2001 From: 12bitfloat <12bitfloat@noreply@molodetz.nl> Date: Tue, 7 Oct 2025 00:32:25 +0200 Subject: [PATCH] Try fixing build.yaml again --- .gitea/workflows/build.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 6a3fc31..b156c70 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -9,12 +9,11 @@ jobs: - run: apt update - run: apt install build-essential valgrind make curl -y - run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --default-toolchain nightly -y - - run: . "$HOME/.cargo/env" - name: Check out repository code uses: actions/checkout@v4 - name: List files in the repository run: | ls ${{ gitea.workspace }} - - run: make build_all - - run: make benchmark + - run: export PATH=$HOME/.cargo/bin:$PATH && make build_all + - run: export PATH=$HOME/.cargo/bin:$PATH && make benchmark - run: make publish