mirror of
https://github.com/reactos/reactos.git
synced 2025-06-14 02:28:31 +00:00
[GITHUB] Applications, CPL, and rosapps modules are building for ARM now
Also add debug and release builds. Addendum toc1538a82
and1f44552d
. CORE-17517 CORE-17604
This commit is contained in:
parent
84ed4a79dc
commit
f8010947fe
1 changed files with 35 additions and 3 deletions
38
.github/workflows/build.yml
vendored
38
.github/workflows/build.yml
vendored
|
@ -137,6 +137,7 @@ jobs:
|
||||||
matrix:
|
matrix:
|
||||||
toolset: ['14.2', '14.1'] # VS 2019, 2017
|
toolset: ['14.2', '14.1'] # VS 2019, 2017
|
||||||
arch: [arm]
|
arch: [arm]
|
||||||
|
config: [Debug, Release]
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
steps:
|
steps:
|
||||||
|
@ -159,9 +160,40 @@ 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}} -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
|
||||||
- name: Build rapps
|
- name: Build applications
|
||||||
run: cmake --build build --target rapps
|
run: cmake --build build --target base/applications/all
|
||||||
|
- name: Build control panel applets
|
||||||
|
run: cmake --build build --target dll/cpl/all
|
||||||
|
- name: Build rosapps
|
||||||
|
run: cmake --build build --target modules/rosapps/all
|
||||||
|
- name: Upload compiled binaries
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: reactos-msvc${{matrix.toolset}}-${{matrix.arch}}-${{matrix.config}}-${{github.sha}}
|
||||||
|
path: |
|
||||||
|
build/base/applications
|
||||||
|
build/dll/cpl
|
||||||
|
build/modules/rosapps
|
||||||
|
!**/CMakeFiles
|
||||||
|
!**/cmake_install.cmake
|
||||||
|
!**/*.asm
|
||||||
|
!**/*.bin
|
||||||
|
!**/*.c
|
||||||
|
!**/*.def
|
||||||
|
!**/*.exp
|
||||||
|
!**/*.h
|
||||||
|
!**/*.lib
|
||||||
|
!**/*.mc
|
||||||
|
!**/*.obj
|
||||||
|
!**/*.rc
|
||||||
|
!**/*.tlb
|
||||||
|
- name: Upload debug symbols
|
||||||
|
if: ${{ matrix.config == 'Debug' }}
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: reactos-syms-msvc${{matrix.toolset}}-${{matrix.arch}}-${{matrix.config}}-${{github.sha}}
|
||||||
|
path: build/msvc_pdb
|
||||||
|
|
||||||
build-clang-cl:
|
build-clang-cl:
|
||||||
strategy:
|
strategy:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue