From 57b85337c3eefe9e3418f7e16a30892ec0053912 Mon Sep 17 00:00:00 2001 From: Dany LE Date: Wed, 17 Jul 2024 10:22:19 +0200 Subject: [PATCH] Update ci.yml --- .gitea/workflows/ci.yml | 28 +++++----------------------- 1 file changed, 5 insertions(+), 23 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 6a9e52a..f7a0367 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -3,33 +3,15 @@ run-name: Building AntOS binaries on: [push] jobs: - build-AMD64: + build-all-binaries: runs-on: ci-tools steps: - - name: Check out repository code - uses: actions/checkout@v4 - - name: Build AntOS for AMD64 platform - uses: ./.gitea/workflow/build-bin.yml + - uses: ./.gitea/workflow/build-bin.yml with: platform: amd64 - - run: echo "Build is ${{ job.status }}." - build-ARM64: - runs-on: ci-tools - steps: - - name: Check out repository code - uses: actions/checkout@v4 - - name: Build AntOS for ARM64 platform - uses: ./.gitea/workflow/build-bin.yml + - uses: ./.gitea/workflow/build-bin.yml with: platform: arm64 - - run: echo "Build is ${{ job.status }}." - build-ARM: - runs-on: ci-tools - steps: - - name: Check out repository code - uses: actions/checkout@v4 - - name: Build AntOS for arm platform - uses: ./.gitea/workflow/build-bin.yml + - uses: ./.gitea/workflow/build-bin.yml with: - platform: arm64 - - run: echo "Build is ${{ job.status }}." + platform: arm