Skip to content

Commit

Permalink
fix wrong platform for arm
Browse files Browse the repository at this point in the history
  • Loading branch information
RassK committed Feb 16, 2024
1 parent fcb26ba commit 3f875a0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,16 @@ jobs:
include:
- machine: windows-2022
containers: none
platform: x64
- machine: ubuntu-20.04
containers: linux
platform: x64
- machine: macos-11
containers: none
platform: x64
- machine: actuated-arm64
containers: linux
platform: arm
runs-on: ${{ matrix.machine }}
steps:
- name: Checkout
Expand Down Expand Up @@ -98,7 +102,7 @@ jobs:
make
- name: Run TestWorkflow
run: ./build.cmd --skip NativeTests --target TestWorkflow --test-target-framework ${{ matrix.test-tfm }} --containers ${{ matrix.containers }}
run: ./build.cmd --skip NativeTests --target TestWorkflow --platform ${{ matrix.platform }} --test-target-framework ${{ matrix.test-tfm }} --containers ${{ matrix.containers }}

- name: Upload test logs
if: always()
Expand Down
2 changes: 1 addition & 1 deletion build/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ partial class Build : NukeBuild
[Parameter("Configuration to build. Default is 'Release'")]
readonly Configuration BuildConfiguration = Configuration.Release;

[Parameter("Platform to build - x86 or x64. Default is 'x64'")]
[Parameter("Platform to build - x86, x64, arm. Default is 'x64'")]
readonly MSBuildTargetPlatform Platform = MSBuildTargetPlatform.x64;

[Parameter($"Docker containers type to be used in tests. One of '{ContainersNone}', '{ContainersLinux}', '{ContainersWindows}', '{ContainersWindowsOnly}'. Default is '{ContainersLinux}'")]
Expand Down

0 comments on commit 3f875a0

Please sign in to comment.