From 917ee3ecada59dc8df7b7447b2c0f6ff2e90d070 Mon Sep 17 00:00:00 2001 From: mpromonet Date: Tue, 10 May 2022 16:42:36 +0200 Subject: [PATCH] factorize cross compilation actions --- .github/workflows/cross.yml | 27 ++++++++++++++++++++------- 1 file changed, 20 insertions(+), 7 deletions(-) diff --git a/.github/workflows/cross.yml b/.github/workflows/cross.yml index e3ed940..05fcbab 100644 --- a/.github/workflows/cross.yml +++ b/.github/workflows/cross.yml @@ -6,14 +6,27 @@ jobs: build: strategy: matrix: - buildtype: [Debug, Release] include: - - system: arm64 - crosscompiler: aarch64-linux-gnu - - system: armhf - crosscompiler: arm-linux-gnueabihf - - system: mips - crosscompiler: mips-linux-gnu + - buildtype: Debug + system: arm64 + crosscompiler: aarch64-linux-gnu + - buildtype: Release + system: arm64 + crosscompiler: aarch64-linux-gnu + + - buildtype: Debug + system: armhf + crosscompiler: arm-linux-gnueabihf + - buildtype: Release + system: armhf + crosscompiler: arm-linux-gnueabihf + + - buildtype: Debug + system: mips + crosscompiler: mips-linux-gnu + - buildtype: Release + system: mips + crosscompiler: mips-linux-gnu runs-on: ubuntu-latest