[GITHUB] Temporarily disable MSBuild

Due to a update of MSBuild build worker, MSBuild keeps failing which is a nuisance.
Temporarily disable that worker until a proper fix is shipped.

CORE-18911
This commit is contained in:
George Bișoc 2023-06-02 22:50:48 +02:00
parent 8061a6f6f4
commit 56a450147c
No known key found for this signature in database
GPG key ID: 688C4FBE25D7DEF6

View file

@ -272,28 +272,29 @@ 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
build-msbuild-i386: # Disable MSBuild for the moment being until a proper fix is provided -- see CORE-18911
name: MSBuild (i386) # build-msbuild-i386:
runs-on: windows-2019 # name: MSBuild (i386)
steps: # runs-on: windows-2019
- name: Install Flex and Bison # steps:
run: | # - name: Install Flex and Bison
curl -O https://svn.reactos.org/storage/vperevertkin/flexbison.7z # run: |
7z x flexbison.7z -O${{github.workspace}}\bin # curl -O https://svn.reactos.org/storage/vperevertkin/flexbison.7z
echo "${{github.workspace}}\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append # 7z x flexbison.7z -O${{github.workspace}}\bin
echo "BISON_PKGDATADIR=${{github.workspace}}\bin\share\bison" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append # echo "${{github.workspace}}\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
echo "M4=${{github.workspace}}\bin\m4.exe" | 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
- name: Add CL to PATH # echo "M4=${{github.workspace}}\bin\m4.exe" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
uses: ilammy/msvc-dev-cmd@v1 # - name: Add CL to PATH
with: # uses: ilammy/msvc-dev-cmd@v1
arch: amd64_x86 # with:
- uses: actions/checkout@v2 # arch: amd64_x86
with: # - uses: actions/checkout@v2
path: src # with:
- name: Configure # path: src
run: | # - name: Configure
mkdir build # run: |
cd build # mkdir 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 # cd build
- name: 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
run: cmake --build ${{github.workspace}}\build --target bootcd --target livecd # - name: Build
# run: cmake --build ${{github.workspace}}\build --target bootcd --target livecd