wip [skip ci]

This commit is contained in:
alexey.lysiuk 2024-03-12 12:14:53 +02:00
parent af1b357b17
commit e006462b8d
2 changed files with 7 additions and 6 deletions

View File

@ -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

View File

@ -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):