Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable libdispatch on x86 #4

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
arch: [x86, x64]
arch: [x64_x86, x64]

steps:
- uses: actions/checkout@v3
Expand Down
6 changes: 0 additions & 6 deletions phases/18-libdispatch.bat
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,6 @@ set TAG=
:: load environment and prepare project
call "%~dp0\..\scripts\common.bat" prepare_project || exit /b 1

if "%ARCH%" == "x86" (
echo Skipping libdispatch for x86
echo Blocked on issue: https://bugs.swift.org/browse/SR-14314
exit /b 0
)

set BUILD_DIR="%SRCROOT%\%PROJECT%\build-%ARCH%-%BUILD_TYPE%"
if exist "%BUILD_DIR%" (rmdir /S /Q "%BUILD_DIR%" || exit /b 1)
mkdir "%BUILD_DIR%" || exit /b 1
Expand Down