dotnet matrix

This commit is contained in:
PatPrz 2024-11-25 11:28:27 +01:00
parent bc0cfa4faf
commit 3cc54ab46a

View File

@ -4,25 +4,31 @@ on: [push]
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy:
matrix:
rid: ["win-x64", "linux-x64"]
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: actions/setup-dotnet@v3 - uses: actions/setup-dotnet@v3
with: with:
dotnet-version: '8.0.x' dotnet-version: '8.0.x'
- run: dotnet restore - run: dotnet restore
- run: dotnet build - run: dotnet publish -o app -r ${{ matrix.rid }} --sc /p:PublishSingleFile=true
- run: dotnet test
- run: dotnet publish -o app -r linux-x64 --sc /p:PublishSingleFile=true,AssemblyName=app
- run: tar cf app.tar app/ # - run: dotnet build
- uses: actions/upload-artifact@v3 # - run: dotnet test
with: # - run: dotnet publish -o app -r linux-x64 --sc /p:PublishSingleFile=true,AssemblyName=app
name: app.tar # - run: tar cf app.tar app/
path: app.tar # - uses: actions/upload-artifact@v3
test: # with:
needs: build # name: app.tar
steps: # path: app.tar
- uses: actions/download-artifact@v3 # test:
with: # needs: build
name: app.tar # steps:
- run: tar xf app.tar # - uses: actions/download-artifact@v3
- run: ./app/app # with:
# name: app.tar
# - run: tar xf app.tar
# - run: ./app/app