Skip to content

Commit

Permalink
Does this work to make an Arm64 EC?
Browse files Browse the repository at this point in the history
  • Loading branch information
baconpaul committed Oct 27, 2024
1 parent 05760e5 commit 22b5216
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/feature.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,21 @@ jobs:
name: mac
dir_build: ./build
file_name: clap-info
cmake_args: -DCMAKE_OSX_ARCHITECTURES="arm64;x86_64"
- os: windows-latest
name: win
dir_build: ./build/Release
file_name: clap-info
file_ext: .exe
cmake_args: -G"Visual Studio 17 2022" -A x64
- os: windows-latest-arm64ec
name: win
dir_build: ./build/Release
file_name: clap-info
file_ext: .exe
cmake_args: -G"Visual Studio 17 2022" -A arm64ec


steps:
- name: Install Windows dependencies
if: matrix.os == 'windows-latest'
Expand All @@ -38,7 +48,7 @@ jobs:

- name: Build binary
run: |
cmake -S . -B ./build -DCMAKE_BUILD_TYPE=Release -DCMAKE_OSX_ARCHITECTURES="arm64;x86_64"
cmake -S . -B ./build -DCMAKE_BUILD_TYPE=Release ${{ matrix.cmake_args }}
cmake --build ./build --config Release
- name: List files
Expand Down

0 comments on commit 22b5216

Please sign in to comment.