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

Replace Azure with Actions #12

Merged
merged 21 commits into from Oct 31, 2020
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
47 changes: 47 additions & 0 deletions .github/workflows/ci.yml
@@ -0,0 +1,47 @@
name: CI

on: [pull_request, push]

jobs:
build:
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
artifact-name: Linux
architecture: x64
build-options: "-PlinuxBuild"
- os: windows-latest
artifact-name: Win64
architecture: x64
build-options: ""
- os: windows-latest
artifact-name: Win32
architecture: x86
build-options: "-Pwindows32"
- os: macos-latest
artifact-name: MacOS
architecture: x64
build-options: "-PmacBuild"
name: "Build - ${{ matrix.artifact-name }}"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.100-preview.8.20417.9
- uses: actions/setup-java@v1
with:
java-version: 11
AustinShalit marked this conversation as resolved.
Show resolved Hide resolved
- name: Build Installer
uses: eskatos/gradle-command-action@v1
AustinShalit marked this conversation as resolved.
Show resolved Hide resolved
with:
gradle-version: 6.0.1
arguments: generateInstallers -PXmx3072m ${{ matrix.build-options }} -DsystemProp.org.gradle.internal.http.connectionTimeout=180000 -DsystemProp.org.gradle.internal.http.socketTimeout=180000 -PjenkinsBuild
- name: Archive Artifacts
uses: actions/upload-artifact@v2
with:
name: ${{ matrix.artifact-name }}-installer
AustinShalit marked this conversation as resolved.
Show resolved Hide resolved
path: build\outputs\
AustinShalit marked this conversation as resolved.
Show resolved Hide resolved

AustinShalit marked this conversation as resolved.
Show resolved Hide resolved
137 changes: 0 additions & 137 deletions azure-pipelines.yml

This file was deleted.