Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove windows cicd until graal 19.3 #116

Merged
merged 1 commit into from
Nov 26, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 31 additions & 31 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,32 +3,32 @@ name: Publish
on: create

jobs:
build-windows:
name: Build Windows
runs-on: windows-2019
steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: '8.0.212'
- name: Build Docker Container
working-directory: ./scripts/windows
run: docker build -t graal-build .
shell: pwsh
- name: Build Jar
run: ./mvnw compile package
shell: pwsh
- name: Compile Binary
run: docker run -v D:\a\titan\titan:c:\titan -w c:\titan graal-build
shell: pwsh
- name: Compress Binary
run: ./scripts/windows/archive-binary
shell: pwsh
- name: Upload Binary
uses: actions/upload-artifact@master
with:
name: titan-cli-windows_amd64.zip
path: releases
# build-windows:
# name: Build Windows
# runs-on: windows-2019
# steps:
# - uses: actions/checkout@v1
# - uses: actions/setup-java@v1
# with:
# java-version: '8.0.212'
# - name: Build Docker Container
# working-directory: ./scripts/windows
# run: docker build -t graal-build .
# shell: pwsh
# - name: Build Jar
# run: ./mvnw compile package
# shell: pwsh
# - name: Compile Binary
# run: docker run -v D:\a\titan\titan:c:\titan -w c:\titan graal-build
# shell: pwsh
# - name: Compress Binary
# run: ./scripts/windows/archive-binary
# shell: pwsh
# - name: Upload Binary
# uses: actions/upload-artifact@master
# with:
# name: titan-cli-windows_amd64.zip
# path: releases
build-linux:
name: Build Linux
runs-on: ubuntu-18.04
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
release:
name: Draft Release
runs-on: ubuntu-18.04
needs: [build-windows, build-linux, build-macos]
needs: [build-linux, build-macos]
steps:
- uses: actions/checkout@v1
- uses: actions/download-artifact@master
Expand All @@ -81,10 +81,10 @@ jobs:
with:
name: titan-cli-linux_amd64.tar
path: releases
- uses: actions/download-artifact@master
with:
name: titan-cli-windows_amd64.zip
path: releases
# - uses: actions/download-artifact@master
# with:
# name: titan-cli-windows_amd64.zip
# path: releases
- name: Draft Release
if: startsWith(github.ref, 'refs/tags/')
run: ./scripts/draft-release.sh
Expand Down