Skip to content

Commit

Permalink
Pretend to run on mulitple architectures
Browse files Browse the repository at this point in the history
  • Loading branch information
erikbra committed Feb 25, 2024
1 parent 5e99f17 commit 8c27f0e
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -322,13 +322,19 @@ jobs:
matrix:
category: [ "CommandLine.SqlServer", "CommandLine.PostgreSQL",
"CommandLine.MariaDB", "CommandLine.Sqlite", "Commandline.Oracle" ]
arch: [ "linux-musl-x64" ]
# arch: [ "win-x64", "win-x86", "win-arm64",
# "linux-musl-x64", "linux-musl-arm64", "linux-x64", "linux-arm64",
# "osx-x64", "osx-arm64"
# ]

steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
with:
name: grate-linux-musl-x64-self-contained-${{ needs.set-version-number.outputs.nuGetVersion }}
path: executable/grate/
name: grate-${{ matrix.arch }}-self-contained-${{ needs.set-version-number.outputs.nuGetVersion }}
#name: grate-linux-musl-x64-self-contained-${{ needs.set-version-number.outputs.nuGetVersion }}
path: executables/${{ matrix.arch }}/grate/
- name: Setup .NET 8
uses: actions/setup-dotnet@v4
with:
Expand All @@ -341,6 +347,6 @@ jobs:
-MaxCpuCount 2
env:
LogLevel: Warning
GrateExecutablePath: ./executable/grate/grate
GrateExecutablePath: ./executables/${{ matrix.arch }}/grate
TZ: UTC

0 comments on commit 8c27f0e

Please sign in to comment.