Use link.

This commit is contained in:
SamTV12345 2023-08-06 00:06:15 +02:00
parent 576bbb7563
commit e242020de9
No known key found for this signature in database
GPG key ID: E63EEC7466038043
2 changed files with 7 additions and 3 deletions

View file

@ -36,7 +36,9 @@ jobs:
- -
name: Install all dependencies and symlink for ep_etherpad-lite name: Install all dependencies and symlink for ep_etherpad-lite
shell: msys2 {0} shell: msys2 {0}
run: src/bin/installDeps.sh run: |
set MSYSTEM=winsymlinks:lnk
src/bin/installDeps.sh
- -
name: Run the backend tests name: Run the backend tests
shell: msys2 {0} shell: msys2 {0}
@ -44,7 +46,9 @@ jobs:
- -
name: Build the .zip name: Build the .zip
shell: msys2 {0} shell: msys2 {0}
run: src/bin/buildForWindows.sh run: |
set MSYSTEM=winsymlinks:lnk
src/bin/buildForWindows.sh
- -
name: Archive production artifacts name: Archive production artifacts
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3

View file

@ -21,7 +21,7 @@ try cd "${workdir}"
ls -lisa src/bin ls -lisa src/bin
ls bin ls bin
# See https://github.com/msys2/MSYS2-packages/issues/1216 # See https://github.com/msys2/MSYS2-packages/issues/1216
export MSYSTEM=winsymlinks:native export MSYSTEM=winsymlinks:lnk
OUTPUT=${workdir}/etherpad-win.zip OUTPUT=${workdir}/etherpad-win.zip