|
@@ -42,27 +42,29 @@ jobs:
|
|
|
./build.sh
|
|
|
env:
|
|
|
CC: clang
|
|
|
- build-windows-msvc:
|
|
|
- runs-on: windows-2019
|
|
|
- steps:
|
|
|
- - uses: actions/checkout@v1
|
|
|
- # this runs vcvarsall for us, so we get the MSVC toolchain in PATH.
|
|
|
- - uses: seanmiddleditch/gha-setup-vsdevenv@master
|
|
|
- - name: Install dependencies
|
|
|
- run: |
|
|
|
- ./setup_dependencies.bat
|
|
|
- - name: build te
|
|
|
- shell: cmd
|
|
|
- run: |
|
|
|
- ./build_msvc.bat
|
|
|
- - name: Prepare WindowsBinaries artifacts
|
|
|
- shell: cmd
|
|
|
- run: |
|
|
|
- mkdir winbin
|
|
|
- copy /B *.exe winbin
|
|
|
- copy /B *.png winbin
|
|
|
- - name: Upload WindowsBinaries artifacts
|
|
|
- uses: actions/upload-artifact@v2
|
|
|
- with:
|
|
|
- name: WindowsBinaries
|
|
|
- path: ./winbin/
|
|
|
+ # TODO: Windows MSVC build is broken
|
|
|
+ # ---
|
|
|
+ # build-windows-msvc:
|
|
|
+ # runs-on: windows-2019
|
|
|
+ # steps:
|
|
|
+ # - uses: actions/checkout@v1
|
|
|
+ # # this runs vcvarsall for us, so we get the MSVC toolchain in PATH.
|
|
|
+ # - uses: seanmiddleditch/gha-setup-vsdevenv@master
|
|
|
+ # - name: Install dependencies
|
|
|
+ # run: |
|
|
|
+ # ./setup_dependencies.bat
|
|
|
+ # - name: build te
|
|
|
+ # shell: cmd
|
|
|
+ # run: |
|
|
|
+ # ./build_msvc.bat
|
|
|
+ # - name: Prepare WindowsBinaries artifacts
|
|
|
+ # shell: cmd
|
|
|
+ # run: |
|
|
|
+ # mkdir winbin
|
|
|
+ # copy /B *.exe winbin
|
|
|
+ # copy /B *.png winbin
|
|
|
+ # - name: Upload WindowsBinaries artifacts
|
|
|
+ # uses: actions/upload-artifact@v2
|
|
|
+ # with:
|
|
|
+ # name: WindowsBinaries
|
|
|
+ # path: ./winbin/
|