Skip to content

Commit

Permalink
update matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
Yanis002 committed Oct 17, 2024
1 parent a25abf0 commit df12692
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,19 @@ jobs:
strategy:
matrix:
include:
- TARGET: "Debug, No F3DEX3"
MAKE_VARS: RELEASE=0 CPP_DEFINES=-DENABLE_F3DEX3=0
- TARGET: "Debug, F3DEX3"
MAKE_VARS: RELEASE=0 CPP_DEFINES=-DENABLE_F3DEX3=1
- TARGET: "Release, No F3DEX3"
MAKE_VARS: RELEASE=1 CPP_DEFINES=-DENABLE_F3DEX3=0
- TARGET: "Release, F3DEX3"
MAKE_VARS: RELEASE=1 CPP_DEFINES=-DENABLE_F3DEX3=1
- name: "Debug, No F3DEX3"
args: RELEASE=0 CPP_DEFINES=-DENABLE_F3DEX3=0
- name: "Debug, F3DEX3"
args: RELEASE=0 CPP_DEFINES=-DENABLE_F3DEX3=1
- name: "Release, No F3DEX3"
args: RELEASE=1 CPP_DEFINES=-DENABLE_F3DEX3=0
- name: "Release, F3DEX3"
args: RELEASE=1 CPP_DEFINES=-DENABLE_F3DEX3=1
defaults:
run:
shell: bash

name: ${{ matrix.name }}

steps:
# Checkout the repository (shallow clone)
Expand Down Expand Up @@ -50,5 +52,5 @@ jobs:
run: make setup -j$(nproc)

# Build the project
- name: Build (${{ matrix.TARGET }})
run: ${{ matrix.MAKE_VARS }} make -j$(nproc)
- name: Build
run: ${{ matrix.args }} make -j$(nproc)

0 comments on commit df12692

Please sign in to comment.