From be0ce6dee52220dfd5d890f3ec8609106a1a906a Mon Sep 17 00:00:00 2001 From: Oliver Walter Date: Thu, 30 May 2024 04:04:57 +0200 Subject: [PATCH] now using cls-build container for faster builds --- .gitea/workflows/build.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 2937554..50e2fa4 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -4,11 +4,11 @@ on: [push] jobs: Build-Release: - runs-on: ubuntu-latest + runs-on: cls-build steps: - - name: Install dependencies - run: apt-get update && apt-get install -y gcc-arm-none-eabi binutils-arm-none-eabi ninja-build cmake protobuf-compiler python3 python3-grpcio python3-protobuf python3-pkg-resources python3-requests + #- name: Install dependencies + # run: apt-get update && apt-get install -y gcc-arm-none-eabi binutils-arm-none-eabi ninja-build cmake protobuf-compiler python3 python3-grpcio python3-protobuf python3-pkg-resources python3-requests # run: pip install setuptools - name: Check out repository code uses: actions/checkout@v4