From 670d418a27f2fe155cf6926a5fb3df548bc9fc37 Mon Sep 17 00:00:00 2001 From: dany Date: Sat, 27 Jul 2024 00:36:25 +0200 Subject: [PATCH] Add .gitea/workflows/autotools-x64-arm64-arm.yml --- .gitea/workflows/autotools-x64-arm64-arm.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitea/workflows/autotools-x64-arm64-arm.yml diff --git a/.gitea/workflows/autotools-x64-arm64-arm.yml b/.gitea/workflows/autotools-x64-arm64-arm.yml new file mode 100644 index 0000000..6f7bb96 --- /dev/null +++ b/.gitea/workflows/autotools-x64-arm64-arm.yml @@ -0,0 +1,17 @@ +name: Building autotools projects for x64, aarch64 and arm +on: + workflow_call: + +jobs: + build-amd64: + uses: ./.gitea/workflows/autotools-cross.yml + with: + platform: amd64 + build-arm64: + uses: ./.gitea/workflows/autotools-cross.yml + with: + platform: arm64 + build-arm: + uses: ./.gitea/workflows/autotools-cross.yml + with: + platform: arm \ No newline at end of file