Deploy Qt libraries with dynamic Windows builds
Also stop using msys-dist.sh with the static CI build.
This commit is contained in:
parent
ce28d5725b
commit
68e310e4ef
|
@ -36,9 +36,8 @@ jobs:
|
||||||
- name: Make
|
- name: Make
|
||||||
run: |
|
run: |
|
||||||
C:\tools\msys64\usr\bin\bash.exe -lc "export PATH=`"/mingw64/bin:`$PATH`" \
|
C:\tools\msys64\usr\bin\bash.exe -lc "export PATH=`"/mingw64/bin:`$PATH`" \
|
||||||
&& cd melonDS/build && make -j$(nproc --all) \
|
&& cd melonDS/build && make -j$(nproc --all)"
|
||||||
&& ../msys-dist.sh"
|
|
||||||
- uses: actions/upload-artifact@v1
|
- uses: actions/upload-artifact@v1
|
||||||
with:
|
with:
|
||||||
name: melonDS
|
name: melonDS
|
||||||
path: C:\tools\msys64\home\runneradmin\melonDS\build\dist
|
path: C:\tools\msys64\home\runneradmin\melonDS\build\melonDS.exe
|
||||||
|
|
|
@ -11,4 +11,5 @@ for lib in $(ldd melonDS.exe | grep mingw | sed "s/.*=> //" | sed "s/(.*)//"); d
|
||||||
cp "${lib}" dist
|
cp "${lib}" dist
|
||||||
done
|
done
|
||||||
|
|
||||||
cp melonDS.exe dist
|
cp melonDS.exe dist
|
||||||
|
windeployqt dist
|
||||||
|
|
Loading…
Reference in New Issue