mirror of
https://github.com/Detanup01/gbe_fork.git
synced 2024-11-27 05:04:01 +08:00
verbose CI
This commit is contained in:
parent
66d7b6a125
commit
1ecae283d8
10
.github/workflows/build-linux.yml
vendored
10
.github/workflows/build-linux.yml
vendored
@ -72,7 +72,7 @@ jobs:
|
||||
- name: Build deps
|
||||
if: steps.emu-deps-cache-step.outputs.cache-hit != 'true'
|
||||
shell: bash
|
||||
run: sudo chmod 777 build_linux_deps.sh && sudo ./build_linux_deps.sh
|
||||
run: sudo chmod 777 build_linux_deps.sh && sudo ./build_linux_deps.sh -verbose
|
||||
|
||||
|
||||
build:
|
||||
@ -122,12 +122,12 @@ jobs:
|
||||
- name: Build deps
|
||||
if: steps.emu-deps-cache-step.outputs.cache-hit != 'true'
|
||||
shell: bash
|
||||
run: sudo chmod 777 build_linux_deps.sh && sudo ./build_linux_deps.sh
|
||||
run: sudo chmod 777 build_linux_deps.sh && sudo ./build_linux_deps.sh -verbose
|
||||
|
||||
## mandatory Linux packages, installed via sudo apt install ...
|
||||
- name: Install required packages
|
||||
shell: bash
|
||||
run: sudo chmod 777 build_linux_deps.sh && sudo ./build_linux_deps.sh -packages_only
|
||||
run: sudo chmod 777 build_linux_deps.sh && sudo ./build_linux_deps.sh -verbose -packages_only
|
||||
|
||||
## extra helpers/tools, these are not built inside the deps build dir
|
||||
- name: Clone third-party build helpers (build/linux)
|
||||
@ -147,7 +147,7 @@ jobs:
|
||||
- name: Build release mode
|
||||
shell: bash
|
||||
working-directory: ${{ github.workspace }}
|
||||
run: "sudo chmod 777 build_linux.sh && ./build_linux.sh release"
|
||||
run: "sudo chmod 777 build_linux.sh && ./build_linux.sh -verbose release"
|
||||
|
||||
### package (release mode)
|
||||
- name: Package build (release)
|
||||
@ -169,7 +169,7 @@ jobs:
|
||||
- name: Build debug mode
|
||||
shell: bash
|
||||
working-directory: ${{ github.workspace }}
|
||||
run: "sudo chmod 777 build_linux.sh && ./build_linux.sh debug"
|
||||
run: "sudo chmod 777 build_linux.sh && ./build_linux.sh -verbose debug"
|
||||
|
||||
### package (debug mode)
|
||||
- name: Package build (debug)
|
||||
|
8
.github/workflows/build-win.yml
vendored
8
.github/workflows/build-win.yml
vendored
@ -72,7 +72,7 @@ jobs:
|
||||
if: steps.emu-deps-cache-step.outputs.cache-hit != 'true'
|
||||
shell: cmd
|
||||
working-directory: ${{ github.workspace }}
|
||||
run: build_win_deps.bat
|
||||
run: build_win_deps.bat -verbose
|
||||
|
||||
|
||||
build:
|
||||
@ -123,7 +123,7 @@ jobs:
|
||||
if: steps.emu-deps-cache-step.outputs.cache-hit != 'true'
|
||||
shell: cmd
|
||||
working-directory: ${{ github.workspace }}
|
||||
run: build_win_deps.bat
|
||||
run: build_win_deps.bat -verbose
|
||||
|
||||
## extra helpers/tools, these are not built inside the deps build dir
|
||||
- name: Clone third-party build helpers (common/win)
|
||||
@ -148,7 +148,7 @@ jobs:
|
||||
- name: Build release mode
|
||||
shell: cmd
|
||||
working-directory: ${{ github.workspace }}
|
||||
run: build_win.bat +exclient-extra-32 +exclient-extra-64 release
|
||||
run: build_win.bat -verbose +exclient-extra-32 +exclient-extra-64 release
|
||||
|
||||
### package (release mode)
|
||||
- name: Package build (release)
|
||||
@ -170,7 +170,7 @@ jobs:
|
||||
- name: Build debug mode
|
||||
shell: cmd
|
||||
working-directory: ${{ github.workspace }}
|
||||
run: build_win.bat +exclient-extra-32 +exclient-extra-64 debug
|
||||
run: build_win.bat -verbose +exclient-extra-32 +exclient-extra-64 debug
|
||||
|
||||
### package (debug mode)
|
||||
- name: Package build (debug)
|
||||
|
Loading…
Reference in New Issue
Block a user