Skip to content
Open
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
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,6 @@ jobs:
run: cat /tmp/vscoq_init_log.*

install-windows:
if: false
runs-on: windows-latest
steps:
- name: Set git to use LF
Expand All @@ -119,7 +118,7 @@ jobs:
- name: Build language server
run: .\language-server\build-windows-platform.bat
env:
COQ_VERSION: V8.18+rc1
COQ_VERSION: V8.19.0

- run: C:\ci\cygwin64\bin\bash.exe --login -c 'echo vscoqtop=$(cygpath -m $(which vscoqtop))' >> $Env:GITHUB_ENV

Expand Down
3 changes: 2 additions & 1 deletion language-server/build-windows-platform.bat
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ REM Download platform script

SET PATH=%PATH%;C:\Program Files\7-Zip;C:\Program Files\Git\mingw64\bin

SET PLATFORM=https://github.com/coq/platform/archive/coq-ci.zip
SET PLATFORM=https://github.com/coq/platform/archive/main.zip

SET ARCH=64

Expand Down Expand Up @@ -33,6 +33,7 @@ call coq_platform_make_windows.bat ^
-set-switch=y ^
-override-dev-pkg="coq-core=https://github.com/coq/coq/archive/%COQ_VERSION%.tar.gz" ^
-override-dev-pkg="coq-stdlib=https://github.com/coq/coq/archive/%COQ_VERSION%.tar.gz" ^
-override-dev-pkg="coqide-server=https://github.com/coq/coq/archive/%COQ_VERSION%.tar.gz" ^
-override-dev-pkg="coq=https://github.com/coq/coq/archive/%COQ_VERSION%.tar.gz" ^
|| GOTO ErrorExit

Expand Down