mirror of
https://github.com/Neo-Desktop/WindowsXPKg
synced 2025-01-03 18:30:15 +02:00
calling a reusable workflow must be done in a seperate job
we can use the needs keyword to ensure it serializes the build
This commit is contained in:
parent
38f17cdea5
commit
b71923677f
8
.github/workflows/windows.yml
vendored
8
.github/workflows/windows.yml
vendored
@ -27,8 +27,12 @@ on:
|
|||||||
branches: [ "master" ]
|
branches: [ "master" ]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
build-djgpp:
|
||||||
|
uses: ./.github/workflows/dos-djgpp.yml
|
||||||
|
|
||||||
build:
|
build:
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
|
needs: build-djgpp
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
@ -65,10 +69,6 @@ jobs:
|
|||||||
- name: Setup MSBuild
|
- name: Setup MSBuild
|
||||||
uses: microsoft/setup-msbuild@v1
|
uses: microsoft/setup-msbuild@v1
|
||||||
|
|
||||||
- name: Run DJGPP Compilation
|
|
||||||
if: ${{ matrix.arch }} == "Win32"
|
|
||||||
uses: ./.github/workflows/dos-djgpp.yml
|
|
||||||
|
|
||||||
- name: Download UMSKT-DJGPP compiled artifact
|
- name: Download UMSKT-DJGPP compiled artifact
|
||||||
if: ${{ matrix.arch }} == "Win32"
|
if: ${{ matrix.arch }} == "Win32"
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v3
|
||||||
|
Loading…
Reference in New Issue
Block a user