mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-18 03:31:31 +12:00
set build_type
This commit is contained in:
parent
f96abfb274
commit
b0b86ed941
1 changed files with 32 additions and 0 deletions
32
.github/workflows/build.yml
vendored
32
.github/workflows/build.yml
vendored
|
@ -157,7 +157,15 @@ jobs:
|
||||||
HTTP-Server-Build:
|
HTTP-Server-Build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
build_type:
|
||||||
|
- release
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
- name: Set BUILD_TYPE variable
|
||||||
|
run: echo "BUILD_TYPE=${{ matrix.build_type }}" >> $GITHUB_ENV
|
||||||
|
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Fetch submodules
|
- name: Fetch submodules
|
||||||
run: git submodule update --init --recursive
|
run: git submodule update --init --recursive
|
||||||
|
@ -187,7 +195,15 @@ jobs:
|
||||||
MacOs-Build:
|
MacOs-Build:
|
||||||
runs-on: macos-latest
|
runs-on: macos-latest
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
build_type:
|
||||||
|
- release
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
- name: Set BUILD_TYPE variable
|
||||||
|
run: echo "BUILD_TYPE=${{ matrix.build_type }}" >> $GITHUB_ENV
|
||||||
|
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Fetch submodules
|
- name: Fetch submodules
|
||||||
run: git submodule update --init --recursive
|
run: git submodule update --init --recursive
|
||||||
|
@ -229,7 +245,15 @@ jobs:
|
||||||
Linux-AppImage-Build:
|
Linux-AppImage-Build:
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
build_type:
|
||||||
|
- release
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
- name: Set BUILD_TYPE variable
|
||||||
|
run: echo "BUILD_TYPE=${{ matrix.build_type }}" >> $GITHUB_ENV
|
||||||
|
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Fetch submodules
|
- name: Fetch submodules
|
||||||
run: git submodule update --init --recursive
|
run: git submodule update --init --recursive
|
||||||
|
@ -271,7 +295,15 @@ jobs:
|
||||||
Linux-Build:
|
Linux-Build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
build_type:
|
||||||
|
- release
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
- name: Set BUILD_TYPE variable
|
||||||
|
run: echo "BUILD_TYPE=${{ matrix.build_type }}" >> $GITHUB_ENV
|
||||||
|
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Fetch submodules
|
- name: Fetch submodules
|
||||||
run: git submodule update --init --recursive
|
run: git submodule update --init --recursive
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue