Skip to content

Commit

Permalink
.github/workflows/build.yml: add MSI STM variant to CI
Browse files Browse the repository at this point in the history
Change-Id: I9402b52f8f4c293ed0f1fd3e0e76307ca19b2b27
Signed-off-by: Michał Kopeć <[email protected]>
  • Loading branch information
mkopec committed Nov 3, 2023
1 parent 16b1f08 commit 30d3ffe
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 30d3ffe

Please sign in to comment.