From c0042746b2320d84286f7caa6c56b1c5ed59399a Mon Sep 17 00:00:00 2001 From: Kristian Larsson Date: Fri, 26 Jul 2024 11:07:39 +0200 Subject: [PATCH] Add arch for linux builds just to be consistent with macos and prepare for the day we do more than x86_64 --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d87883e15..ac8f4efdb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -128,14 +128,14 @@ jobs: if: github.event_name != 'schedule' id: setmatrix_pr run: | - MATRIX_JSON='{\"include\":[{\"os\":\"debian\",\"version\":\"12\",\"cache\":true}]}' + MATRIX_JSON='{\"include\":[{\"os\":\"debian\",\"version\":\"12\",\"arch\":\"x86_64\",\"cache\":true}]}' echo "matrix=$MATRIX_JSON" >> $GITHUB_OUTPUT - name: "Set Matrix for nightly run" if: github.event_name == 'schedule' id: setmatrix_cron run: | - MATRIX_JSON='{\"include\":[{\"os\":\"debian\",\"version\":\"11\",\"cache\":false},{\"os\":\"debian\",\"version\":\"12\",\"cache\":true},{\"os\":\"ubuntu\",\"version\":\"22.04\",\"cache\":false},{\"os\":\"ubuntu\",\"version\":\"24.04\",\"cache\":false}]}' + MATRIX_JSON='{\"include\":[{\"os\":\"debian\",\"version\":\"11\",\"arch\":\"x86_64\",\"cache\":false},{\"os\":\"debian\",\"version\":\"12\",\"arch\":\"x86_64\",\"cache\":true},{\"os\":\"ubuntu\",\"version\":\"22.04\",\"arch\":\"x86_64\",\"cache\":false},{\"os\":\"ubuntu\",\"version\":\"24.04\",\"arch\":\"x86_64\",\"cache\":false}]}' echo "matrix=$MATRIX_JSON" >> $GITHUB_OUTPUT - name: "Set final matrix output"