Unverified Commit 3bf38b26 authored by Nikolay Igotti's avatar Nikolay Igotti Committed by GitHub

Update blank.yml

parent 7b37c67f
...@@ -15,10 +15,9 @@ on: ...@@ -15,10 +15,9 @@ on:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel # A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs: jobs:
# This workflow contains a single job called "build" macos:
build:
# The type of runner that the job will run on # The type of runner that the job will run on
runs-on: ubuntu-latest runs-on: macos-10.15
# Steps represent a sequence of tasks that will be executed as part of the job # Steps represent a sequence of tasks that will be executed as part of the job
steps: steps:
...@@ -31,3 +30,29 @@ jobs: ...@@ -31,3 +30,29 @@ jobs:
cd $GITHUB_WORKSPACE/skiko cd $GITHUB_WORKSPACE/skiko
./gradlew publishToMavenLocal ./gradlew publishToMavenLocal
./gradlew -Pskiko.native.enabled=true publishToMavenLocal ./gradlew -Pskiko.native.enabled=true publishToMavenLocal
linux:
# The type of runner that the job will run on
runs-on: ubuntu-16.04
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
# Runs a set of commands using the runners shell
- name: Run a multi-line script
run: |
cd $GITHUB_WORKSPACE/skiko
./gradlew publishToMavenLocal
windows:
runs-on: windows-2019
steps:
- uses: actions/checkout@v2
- uses: microsoft/setup-msbuild@v1
- uses: ilammy/msvc-dev-cmd@v1
- name: Run a multi-line script
run: |
cd $GITHUB_WORKSPACE/skiko
./gradlew publishToMavenLocal
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment