mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-10 06:31:37 +00:00
wip [skip ci]
This commit is contained in:
parent
af1b357b17
commit
e006462b8d
2 changed files with 7 additions and 6 deletions
12
.github/workflows/build.yml
vendored
12
.github/workflows/build.yml
vendored
|
@ -20,19 +20,21 @@ jobs:
|
|||
fail-fast: false
|
||||
matrix:
|
||||
target:
|
||||
- dsda-doom
|
||||
- GZDoom
|
||||
- Raze
|
||||
- PrBoom-Plus
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Generate Xcode project
|
||||
run: |
|
||||
./build.py --target ${{ matrix.target }} --xcode
|
||||
|
||||
- name: Build target
|
||||
run: |
|
||||
./build.py --target ${{ matrix.target }}
|
||||
|
||||
- name: Generate Xcode project
|
||||
run: |
|
||||
./build.py --target ${{ matrix.target }} --xcode
|
||||
|
||||
- name: List Build Directory
|
||||
if: always()
|
||||
shell: bash
|
||||
|
|
|
@ -431,7 +431,6 @@ class CMakeTarget(BuildTarget):
|
|||
args += opts.to_list(CommandLineOptions.CMAKE_RULES)
|
||||
args.append(state.source / self.src_root)
|
||||
|
||||
print(args)
|
||||
subprocess.run(args, check=True, cwd=state.build_path, env=state.environment)
|
||||
|
||||
def build(self, state: BuildState):
|
||||
|
|
Loading…
Reference in a new issue