mirror of
https://github.com/reactos/reactos.git
synced 2025-06-03 00:10:39 +00:00
[GITHUB] Add NT6 builders
This commit is contained in:
parent
fed97ebf1a
commit
732f223ca0
1 changed files with 16 additions and 1 deletions
17
.github/workflows/build.yml
vendored
17
.github/workflows/build.yml
vendored
|
@ -8,6 +8,12 @@ jobs:
|
||||||
compiler: [gcc, clang]
|
compiler: [gcc, clang]
|
||||||
arch: [i386, amd64]
|
arch: [i386, amd64]
|
||||||
config: [Debug, Release]
|
config: [Debug, Release]
|
||||||
|
dllver: ['0x502', '0x600']
|
||||||
|
exclude:
|
||||||
|
- dllver: 0x600
|
||||||
|
compiler: clang
|
||||||
|
- dllver: 0x600
|
||||||
|
config: Release
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
@ -82,6 +88,7 @@ jobs:
|
||||||
toolset: ['14.2', '14.1', '14.0'] # VS 2019, 2017, and 2015 (see below)
|
toolset: ['14.2', '14.1', '14.0'] # VS 2019, 2017, and 2015 (see below)
|
||||||
arch: [i386, amd64]
|
arch: [i386, amd64]
|
||||||
config: [Debug, Release]
|
config: [Debug, Release]
|
||||||
|
dllver: ['0x502', '0x600']
|
||||||
exclude: # VS 2019, 2017 only with windows-latest; VS 2015 only with windows-2019
|
exclude: # VS 2019, 2017 only with windows-latest; VS 2015 only with windows-2019
|
||||||
- os: windows-2019
|
- os: windows-2019
|
||||||
toolset: '14.2'
|
toolset: '14.2'
|
||||||
|
@ -89,6 +96,14 @@ jobs:
|
||||||
toolset: '14.1'
|
toolset: '14.1'
|
||||||
- os: windows-latest
|
- os: windows-latest
|
||||||
toolset: '14.0'
|
toolset: '14.0'
|
||||||
|
- dllver: 0x600
|
||||||
|
os: windows-2019
|
||||||
|
- dllver: 0x600
|
||||||
|
toolset: '14.1'
|
||||||
|
- dllver: 0x600
|
||||||
|
toolset: '14.0'
|
||||||
|
- dllver: 0x600
|
||||||
|
config: Release
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
runs-on: ${{matrix.os}}
|
runs-on: ${{matrix.os}}
|
||||||
steps:
|
steps:
|
||||||
|
@ -118,7 +133,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
path: src
|
path: src
|
||||||
- name: Configure
|
- name: Configure
|
||||||
run: cmake -S src -B build -G Ninja -DCMAKE_TOOLCHAIN_FILE:FILEPATH=toolchain-msvc.cmake -DARCH:STRING=${{matrix.arch}} -DCMAKE_BUILD_TYPE=${{matrix.config}} -DENABLE_ROSTESTS=1 -DENABLE_ROSAPPS=1
|
run: cmake -S src -B build -G Ninja -DCMAKE_TOOLCHAIN_FILE:FILEPATH=toolchain-msvc.cmake -DARCH:STRING=${{matrix.arch}} -DCMAKE_BUILD_TYPE=${{matrix.config}} -DENABLE_ROSTESTS=1 -DENABLE_ROSAPPS=1 -DDLL_EXPORT_VERSION=${{matrix.dllver}}
|
||||||
- name: Build
|
- name: Build
|
||||||
run: cmake --build build -- -k0
|
run: cmake --build build -- -k0
|
||||||
- name: Generate ISOs
|
- name: Generate ISOs
|
||||||
|
|
Loading…
Reference in a new issue