|
@@ -42,29 +42,27 @@ jobs:
|
|
|
./build.sh
|
|
|
env:
|
|
|
CC: clang
|
|
|
- # TODO(#12): 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/
|
|
|
+ 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/
|