Disable Makefile CI build products
This commit is contained in:
parent
1591f4ad1c
commit
8d692f8fef
25
.github/workflows/build.yml
vendored
25
.github/workflows/build.yml
vendored
|
|
@ -13,12 +13,6 @@ jobs:
|
||||||
sudo apt-get install libsdl2-dev
|
sudo apt-get install libsdl2-dev
|
||||||
- name: Compile
|
- name: Compile
|
||||||
run: make release -j$(nproc)
|
run: make release -j$(nproc)
|
||||||
env:
|
|
||||||
ARCHIVE: 1
|
|
||||||
- uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: Linux
|
|
||||||
path: build/*.zip
|
|
||||||
windows-legacy:
|
windows-legacy:
|
||||||
name: Windows (Legacy Makefile)
|
name: Windows (Legacy Makefile)
|
||||||
runs-on: windows-2022
|
runs-on: windows-2022
|
||||||
|
|
@ -26,14 +20,7 @@ jobs:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- name: Compile
|
- name: Compile
|
||||||
run: |
|
run: |
|
||||||
choco install zip
|
|
||||||
make release -j $env:NUMBER_OF_PROCESSORS
|
make release -j $env:NUMBER_OF_PROCESSORS
|
||||||
env:
|
|
||||||
ARCHIVE: 1
|
|
||||||
- uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: Windows
|
|
||||||
path: build/*.zip
|
|
||||||
macos-legacy:
|
macos-legacy:
|
||||||
name: macOS (Legacy Makefile)
|
name: macOS (Legacy Makefile)
|
||||||
runs-on: macos-13
|
runs-on: macos-13
|
||||||
|
|
@ -41,12 +28,6 @@ jobs:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- name: Compile
|
- name: Compile
|
||||||
run: make release -j$(sysctl -n hw.logicalcpu)
|
run: make release -j$(sysctl -n hw.logicalcpu)
|
||||||
env:
|
|
||||||
ARCHIVE: 1
|
|
||||||
- uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: macOS
|
|
||||||
path: build/*.zip
|
|
||||||
emscripten-legacy:
|
emscripten-legacy:
|
||||||
name: Emscripten (Legacy Makefile)
|
name: Emscripten (Legacy Makefile)
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
@ -62,15 +43,9 @@ jobs:
|
||||||
./emsdk install 3.1.58
|
./emsdk install 3.1.58
|
||||||
./emsdk activate 3.1.58
|
./emsdk activate 3.1.58
|
||||||
- name: Compile
|
- name: Compile
|
||||||
env:
|
|
||||||
ARCHIVE: 1
|
|
||||||
run: |
|
run: |
|
||||||
source emsdk/emsdk_env.sh
|
source emsdk/emsdk_env.sh
|
||||||
emmake make release -j$(nproc)
|
emmake make release -j$(nproc)
|
||||||
- uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: Web
|
|
||||||
path: build/*.zip
|
|
||||||
|
|
||||||
linux:
|
linux:
|
||||||
name: Linux
|
name: Linux
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user