Skip to content

Commit

Permalink
run all workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
albho committed Aug 14, 2024
1 parent 288a320 commit 35c643b
Showing 1 changed file with 20 additions and 34 deletions.
54 changes: 20 additions & 34 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:

strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest, macos-latest, macos-13, windows-latest]
dotnet-version: [2.1.x, 3.0.x, 3.1.x, 5.0.x, 6.0.x]
include:
- dotnet-version: 2.1.x
Expand All @@ -67,22 +67,6 @@ jobs:
- dotnet-version: 6.0.x
binding-framework: net6.0
test-framework: net6.0
- os: macos-13
dotnet-version: 2.1.x
binding-framework: netstandard2.0
test-framework: netcoreapp2.1
- os: macos-13
dotnet-version: 3.0.x
binding-framework: netcoreapp3.0
test-framework: netcoreapp3.0
- os: macos-13
dotnet-version: 3.1.x
binding-framework: netcoreapp3.0
test-framework: netcoreapp3.1
- os: macos-13
dotnet-version: 5.0.x
binding-framework: netcoreapp3.0
test-framework: net5.0
exclude:
- os: macos-latest
dotnet-version: 2.1.x
Expand All @@ -92,6 +76,8 @@ jobs:
dotnet-version: 3.1.x
- os: macos-latest
dotnet-version: 5.0.x
- os: macos-13
dotnet-version: 6.0.x

steps:
- uses: actions/checkout@v3
Expand All @@ -107,20 +93,20 @@ jobs:
- name: Test
run: dotnet test --framework ${{ matrix.test-framework }} -v n

# build-self-hosted:
# runs-on: ${{ matrix.machine }}
# env:
# ACCESS_KEY: ${{secrets.PV_VALID_ACCESS_KEY}}
#
# strategy:
# matrix:
# machine: [rpi3-32, rpi3-64, rpi4-32, rpi4-64, rpi5-64]
#
# steps:
# - uses: actions/checkout@v3
#
# - name: Build binding
# run: dotnet build Rhino/Rhino.csproj --framework net6.0
#
# - name: Test
# run: dotnet test --framework net6.0 -v n
build-self-hosted:
runs-on: ${{ matrix.machine }}
env:
ACCESS_KEY: ${{secrets.PV_VALID_ACCESS_KEY}}

strategy:
matrix:
machine: [rpi3-32, rpi3-64, rpi4-32, rpi4-64, rpi5-64]

steps:
- uses: actions/checkout@v3

- name: Build binding
run: dotnet build Rhino/Rhino.csproj --framework net6.0

- name: Test
run: dotnet test --framework net6.0 -v n

0 comments on commit 35c643b

Please sign in to comment.