Adds custom GetWorkspace feature to all steps. #347
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
# ---------------------- | |
# <auto-generated> | |
# | |
# This file was generated with FlubuCore. | |
# | |
# To regenerate file execute flubu {{TargetName}} --ci={CIName} | |
# | |
# </auto-generated> | |
# ---------------------- | |
name: build | |
on: [push, pull_request] | |
jobs: | |
windows-latest: | |
name: windows-latest | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install Flubu | |
run: dotnet tool install --global FlubuCore.Tool --version 5.1.8 | |
- name: buildVersion | |
working-directory: src | |
run: flubu buildVersion --nd | |
- name: compile.linux | |
working-directory: src | |
run: flubu compile.linux --nd | |
- name: test.linux | |
working-directory: src | |
run: flubu test.linux --nd | |
- name: package.DotnetFlubu | |
working-directory: src | |
run: flubu package.DotnetFlubu --nd | |
ubuntu-latest: | |
name: ubuntu-latest | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install Flubu | |
run: dotnet tool install --global FlubuCore.Tool --version 5.1.8 | |
- name: buildVersion | |
working-directory: src | |
run: flubu buildVersion --nd | |
- name: compile.linux | |
working-directory: src | |
run: flubu compile.linux --nd | |
- name: test.linux | |
working-directory: src | |
run: flubu test.linux --nd | |
- name: package.DotnetFlubu | |
working-directory: src | |
run: flubu package.DotnetFlubu --nd | |
macos-latest: | |
name: macos-latest | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install Flubu | |
run: dotnet tool install --global FlubuCore.Tool --version 5.1.8 | |
- name: buildVersion | |
working-directory: src | |
run: flubu buildVersion --nd | |
- name: compile.linux | |
working-directory: src | |
run: flubu compile.linux --nd | |
- name: test.linux | |
working-directory: src | |
run: flubu test.linux --nd | |
- name: package.DotnetFlubu | |
working-directory: src | |
run: flubu package.DotnetFlubu --nd |