[GITHUB] build.yml: Re-enable 'build-msbuild-i386' (#6470)

Something fixed it in the meantime.

Revert 0.4.15-dev-6069-g 56a45014. CORE-18911
This commit is contained in:
Serge Gautherie 2024-02-10 11:36:38 +01:00 committed by GitHub
parent 24dea07c3c
commit eb55d984c0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -291,29 +291,28 @@ jobs:
name: reactos-syms-clang-cl-${{matrix.arch}}-${{matrix.config}}-${{github.sha}} name: reactos-syms-clang-cl-${{matrix.arch}}-${{matrix.config}}-${{github.sha}}
path: build/msvc_pdb path: build/msvc_pdb
# Disable MSBuild for the moment being until a proper fix is provided -- see CORE-18911 build-msbuild-i386:
# build-msbuild-i386: name: MSBuild (i386)
# name: MSBuild (i386) runs-on: windows-2019
# runs-on: windows-2019 steps:
# steps: - name: Install Flex and Bison
# - name: Install Flex and Bison run: |
# run: | curl -O https://svn.reactos.org/storage/vperevertkin/flexbison.7z
# curl -O https://svn.reactos.org/storage/vperevertkin/flexbison.7z 7z x flexbison.7z -O${{github.workspace}}\bin
# 7z x flexbison.7z -O${{github.workspace}}\bin echo "${{github.workspace}}\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
# echo "${{github.workspace}}\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append echo "BISON_PKGDATADIR=${{github.workspace}}\bin\share\bison" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
# echo "BISON_PKGDATADIR=${{github.workspace}}\bin\share\bison" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append echo "M4=${{github.workspace}}\bin\m4.exe" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
# echo "M4=${{github.workspace}}\bin\m4.exe" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append - name: Add CL to PATH
# - name: Add CL to PATH uses: ilammy/msvc-dev-cmd@v1
# uses: ilammy/msvc-dev-cmd@v1 with:
# with: arch: amd64_x86
# arch: amd64_x86 - uses: actions/checkout@v4
# - uses: actions/checkout@v4 with:
# with: path: src
# path: src - name: Configure
# - name: Configure run: |
# run: | mkdir build
# mkdir build cd build
# cd build cmake -G "Visual Studio 16 2019" -A Win32 -DCMAKE_TOOLCHAIN_FILE:FILEPATH=toolchain-msvc.cmake -DARCH:STRING=i386 -DENABLE_ROSTESTS=1 -DENABLE_ROSAPPS=1 ${{github.workspace}}\src
# cmake -G "Visual Studio 16 2019" -A Win32 -DCMAKE_TOOLCHAIN_FILE:FILEPATH=toolchain-msvc.cmake -DARCH:STRING=i386 -DENABLE_ROSTESTS=1 -DENABLE_ROSAPPS=1 ${{github.workspace}}\src - name: Build
# - name: Build run: cmake --build ${{github.workspace}}\build --target bootcd --target livecd
# run: cmake --build ${{github.workspace}}\build --target bootcd --target livecd