From 30d3ffe78545ef1bd0659e0c2218beceed342e0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Kope=C4=87?= Date: Fri, 3 Nov 2023 12:03:41 +0100 Subject: [PATCH] .github/workflows/build.yml: add MSI STM variant to CI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I9402b52f8f4c293ed0f1fd3e0e76307ca19b2b27 Signed-off-by: Michał Kopeć --- .github/workflows/build.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6ea284a3641..2e2ceaecb10 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -45,7 +45,9 @@ jobs: strategy: matrix: vendor: [ msi ] - model: [ ms7d25_ddr4, ms7d25_ddr5, ms7e06_ddr4, ms7e06_ddr5 ] + model: [ ms7d25, ms7e06_ddr5 ] + mem: [ ddr4, ddr5 ] + variant: [ '' , _stm ] steps: - name: Checkout repository uses: actions/checkout@v3 @@ -59,13 +61,13 @@ jobs: run: git submodule update --init --recursive --checkout - name: Build Dasharo run: | - cp configs/config.${{ matrix.vendor }}_${{ matrix.model }} .config + cp configs/config.${{ matrix.vendor }}_${{ matrix.model }}_${{ matrix.mem }}${{ matrix.variant }} .config make olddefconfig make - name: Save artifacts uses: actions/upload-artifact@v2 with: - name: "dasharo-${{ matrix.vendor }}-${{ matrix.model }}-${{ matrix.build }}" + name: "dasharo-${{ matrix.vendor }}-${{ matrix.model }}-${{ matrix.mem }}-${{ matrix.build }}${{ matrix.variant }}" path: | build/coreboot.rom retention-days: 30