From e2f294d402f7284efb79cdf2822d1ee85c0bc105 Mon Sep 17 00:00:00 2001 From: Marius Alwan Meyer <22202402+Sporqist@users.noreply.github.com> Date: Wed, 19 Jul 2023 16:43:44 +0200 Subject: [PATCH] [CI] Use 3rd party image for the build and remove test action --- .gitea/workflows/build.yml | 7 ++----- .gitea/workflows/test.yml | 30 ------------------------------ 2 files changed, 2 insertions(+), 35 deletions(-) delete mode 100644 .gitea/workflows/test.yml diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index c77d3c0..bf6c50e 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -6,17 +6,14 @@ jobs: build: runs-on: ubuntu-latest container: - image: zmkfirmware/zmk-build-arm:stable + image: ghcr.io/bcdevices/zephyr:latest name: Build steps: - name: Install Dependencies run: | apt-get update; apt-get install --yes --no-install-recommends \ - nodejs \ - zip \ - openssl \ - ca-certificates + nodejs - name: Checkout uses: actions/checkout@v3 diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml deleted file mode 100644 index 67776dd..0000000 --- a/.gitea/workflows/test.yml +++ /dev/null @@ -1,30 +0,0 @@ -on: [push, pull_request, workflow_dispatch] - -name: Test - -jobs: - build: - runs-on: ubuntu-latest - container: - image: ghcr.io/bcdevices/zephyr:latest - name: Build - steps: - - name: Install Dependencies - run: | - apt-get update; - apt-get upgrade --yes - apt-get install --yes --no-install-recommends \ - nodejs - - - name: Checkout - uses: actions/checkout@v3 - - - name: Create some File - run: echo "lalala" > test.txt - - - name: Upload Artifact - uses: actions/upload-artifact@v3 - with: - path: test.txt - name: test.txt - if-no-files-found: ignore