-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disable Windows build for being utterly broken.
- Loading branch information
1 parent
0a81d04
commit 1dbdb2f
Showing
1 changed file
with
36 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -247,39 +247,39 @@ jobs: | |
file: compaREST-macOS-x86.zip | ||
tag: ${{ github.ref }} | ||
|
||
Linux-Windows: | ||
needs: check_versions | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: recursive | ||
|
||
- name: Common setup | ||
uses: ./.github/actions/common_setup | ||
with: | ||
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }} | ||
|
||
- name: Build Windows binary | ||
run: | | ||
cp -LR $(nix-build -A WindowsCompaRESTBin -j auto --no-out-link)/bin compaREST | ||
- name: Upload Windows compaREST bundle | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: compaREST binary – Windows | ||
path: compaREST | ||
|
||
- name: Zip Release Assets | ||
if: github.event_name == 'release' | ||
shell: bash | ||
run: | | ||
zip -r compaREST-Windows.zip compaREST | ||
- name: Upload compaREST binary – Windows to release | ||
if: github.event_name == 'release' | ||
uses: svenstaro/[email protected] | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: compaREST-Windows.zip | ||
tag: ${{ github.ref }} | ||
# Linux-Windows: | ||
# needs: check_versions | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/checkout@v2 | ||
# with: | ||
# submodules: recursive | ||
# | ||
# - name: Common setup | ||
# uses: ./.github/actions/common_setup | ||
# with: | ||
# authToken: ${{ secrets.CACHIX_AUTH_TOKEN }} | ||
# | ||
# - name: Build Windows binary | ||
# run: | | ||
# cp -LR $(nix-build -A WindowsCompaRESTBin -j auto --no-out-link)/bin compaREST | ||
# | ||
# - name: Upload Windows compaREST bundle | ||
# uses: actions/upload-artifact@v2 | ||
# with: | ||
# name: compaREST binary – Windows | ||
# path: compaREST | ||
# | ||
# - name: Zip Release Assets | ||
# if: github.event_name == 'release' | ||
# shell: bash | ||
# run: | | ||
# zip -r compaREST-Windows.zip compaREST | ||
# | ||
# - name: Upload compaREST binary – Windows to release | ||
# if: github.event_name == 'release' | ||
# uses: svenstaro/[email protected] | ||
# with: | ||
# repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
# file: compaREST-Windows.zip | ||
# tag: ${{ github.ref }} |