123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- name: C/C++ Nigthly windows x64
- on:
- push:
- branches:
- - rc
- jobs:
- build_dep:
- runs-on: windows-latest
-
- steps:
- - uses: actions/checkout@v2
- with:
- ref: 'rc'
- - uses: ilammy/msvc-dev-cmd@v1
- - name: mkdir in deps
- run: mkdir deps/build
- - name: cmake and make deps
- working-directory: ./deps/build
- run: |
- cmake .. -G "Visual Studio 16 2019" -A x64
- msbuild /m ALL_BUILD.vcxproj
- - name: Upload artifact
- uses: actions/upload-artifact@v1.0.0
- with:
- name: deps_win
- path: ./deps/build/destdir/
- build:
- runs-on: windows-latest
- needs: build_dep
-
- steps:
- - uses: actions/checkout@v1
- - uses: ilammy/msvc-dev-cmd@v1
- - name: update submodule profiles
- working-directory: ./resources/profiles
- run: git submodule update --init
- - name: change date in version
- shell: powershell
- run: (Get-Content version.inc) | Foreach-Object {$_ -replace "\+UNKNOWN", ("")} | Set-Content version.inc
- - name: mkdir in deps directory
- run: mkdir deps/destdir
- - name: download deps
- uses: actions/download-artifact@v1
- with:
- name: deps_win
- path: deps/destdir
- - name: echo dir deps
- run: dir deps
- - name: echo dir deps destdir
- run: dir deps/destdir
- - name: mkdir
- run: mkdir build
- - name: cmake
- working-directory: ./build
- run: cmake .. -G "Visual Studio 16 2019" -A x64 -DCMAKE_PREFIX_PATH="d:\a\SuperSlicer\SuperSlicer\deps\destdir\usr\local"
- - name: make
- working-directory: ./build
- run: msbuild /m /P:Configuration=Release INSTALL.vcxproj
- - name: make .mo
- working-directory: ./build
- run: msbuild /m /P:Configuration=Release gettext_po_to_mo.vcxproj
- - name: make .pot
- working-directory: ./build
- run: msbuild /m /P:Configuration=Release gettext_make_pot.vcxproj
- - name: create directory and copy into it
- working-directory: ./build
- run: ls
- - name: create directory and copy into it
- working-directory: ./build
- shell: powershell
- #todo: add the opengl folder
- run: mkdir package
- - name: copy from release
- working-directory: ./build
- shell: powershell
- run: '(new-object System.Net.WebClient).DownloadFile("https://github.com/supermerill/SuperSlicer/releases/download/2.3.56.1/SuperSlicer_2.3.56.1_win64_210527.zip", "SuperSlicer_2.3.56.1_win64_210527.zip")'
- - name: unzip
- working-directory: ./build
- shell: cmd
- run: '"C:/Program Files/7-Zip/7z.exe" x SuperSlicer_2.3.56.1_win64_210527.zip'
- - name: copy missing dll content from old release
- working-directory: ./build
- shell: cmd
- run: |
- xcopy /RCYIE SuperSlicer_2.3.56.1_win64_210527\*.dll package\
- xcopy /RCYIE SuperSlicer_2.3.56.1_win64_210527\*.bat package\
- xcopy /RCYIE SuperSlicer_2.3.56.1_win64_210527\mesa package\
- - name: copy new resources
- working-directory: ./build
- shell: cmd
- run: xcopy /RCYIE ..\resources package\resources
- - name: copy dll & exe
- working-directory: ./build
- shell: cmd
- run: |
- xcopy /RCYIE src\release\*.dll package\
- xcopy /RCYIE src\release\*.exe package\
- xcopy /RCYIE c:\windows\system32\VCRUNTIME140* package\
- del package\opengl32.dll
- # - name: create zip
- # working-directory: ./build
- # shell: cmd
- # run: '"C:/Program Files/7-Zip/7z.exe" a -tzip nightly.zip *'
- - name: Upload artifact
- uses: actions/upload-artifact@v1.0.0
- with:
- name: rc_win64
- path: build/package/
|