-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ded525b
commit bb7d057
Showing
14 changed files
with
157 additions
and
525 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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"version": 1, | ||
"isRoot": true, | ||
"tools": { | ||
"paket": { | ||
"version": "6.2.1", | ||
"commands": [ | ||
"paket" | ||
] | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: linux | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup .NET Core | ||
uses: actions/setup-dotnet@v1 | ||
with: | ||
dotnet-version: 6.0.100 | ||
- name: Setup Paket | ||
run: dotnet tool restore | ||
- name: Install dependencies | ||
run: dotnet paket restore | ||
- name: Build | ||
run: dotnet build src/Uncodium.Eigensystems.sln --configuration Release |
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: macos | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: macos-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup .NET Core | ||
uses: actions/setup-dotnet@v1 | ||
with: | ||
dotnet-version: 6.0.100 | ||
- name: Setup Paket | ||
run: dotnet tool restore | ||
- name: Install dependencies | ||
run: dotnet paket restore | ||
- name: Build | ||
run: dotnet build src/Uncodium.Eigensystems.sln --configuration Release |
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: windows | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: windows-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup .NET Core | ||
uses: actions/setup-dotnet@v1 | ||
with: | ||
dotnet-version: 6.0.100 | ||
- name: Setup Paket | ||
run: dotnet tool restore | ||
- name: Install dependencies | ||
run: dotnet paket restore | ||
- name: Build | ||
run: dotnet build src/Uncodium.Eigensystems.sln --configuration Release |
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 |
---|---|---|
@@ -1,16 +1,22 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "0.1.0", | ||
"version": "2.0.0", | ||
"command": "build.cmd", | ||
"isShellCommand": true, | ||
"args": [], | ||
"showOutput": "always", | ||
"tasks": [ | ||
{ | ||
"taskName": "compile", | ||
"args": [], | ||
"isBuildCommand": true | ||
"label": "compile", | ||
"type": "shell", | ||
"command": "build.cmd", | ||
"args": [ | ||
"compile" | ||
], | ||
"problemMatcher": [], | ||
"group": { | ||
"_id": "build", | ||
"isDefault": false | ||
} | ||
} | ||
] | ||
} |
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
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
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 |
---|---|---|
@@ -1,9 +1,5 @@ | ||
#!/bin/bash | ||
|
||
if [ ! -f .paket/paket ]; then | ||
dotnet tool install Paket --tool-path .paket | ||
fi | ||
|
||
./.paket/paket restore | ||
|
||
dotnet packages/build/fake-cli/tools/netcoreapp2.1/any/fake-cli.dll build $@ | ||
dotnet tool restore | ||
dotnet paket restore | ||
dotnet build src/Uncodium.Eigensystems.sln --configuration Release |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,10 +1,6 @@ | ||
framework: netstandard2.0 | ||
source https://api.nuget.org/v3/index.json | ||
|
||
nuget Aardvark.Base ~> 5.1 | ||
|
||
group Build | ||
storage: none | ||
framework: netstandard2.0 | ||
source https://api.nuget.org/v3/index.json | ||
nuget fake-cli ~> 5.20.4-alpha.1642 | ||
github aardvark-platform/aardvark.fake:v5 | ||
|
||
nuget Aardvark.Base ~> 5.1 |
Oops, something went wrong.