We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bfecb56 commit 066e995Copy full SHA for 066e995
1 file changed
.github/workflows/ci.yml
@@ -61,14 +61,11 @@ jobs:
61
if: matrix.os == 'windows-latest'
62
shell: powershell
63
run: |
64
- # Import the module and enter the shell with minimal arguments
65
Import-Module "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\Tools\Microsoft.VisualStudio.DevShell.dll"
66
- Enter-VsDevShell -VsInstallPath "C:\Program Files\Microsoft Visual Studio\2022\Enterprise" -Arch x64
+ # amd64 is the correct enumerator name for 64-bit Intel/AMD
+ Enter-VsDevShell -VsInstallPath "C:\Program Files\Microsoft Visual Studio\2022\Enterprise" -Arch amd64
67
68
- # Verify we have swift and the linker in the same environment
69
swift --version
70
-
71
- # Run the build
72
bash ./build.sh
73
74
- name: Verify library was built
0 commit comments