Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
ShirasawaSama committed Dec 22, 2023
1 parent ffe2491 commit cb73437
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
node patch
mkdir build
cd build
cmake -G "Visual Studio 17 2022" -A x64 -T ClangCL .. -DCMAKE_BUILD_TYPE=Release
cmake -G "Visual Studio 17 2022" -A x64 .. -DCMAKE_BUILD_TYPE=Release
cmake --build . --config Release
- name: Upload binaries to release
Expand All @@ -48,7 +48,7 @@ jobs:
rm -r build
mkdir build
cd build
cmake -G "Visual Studio 17 2022" -A Win32 -T ClangCL .. -DCMAKE_BUILD_TYPE=Release
cmake -G "Visual Studio 17 2022" -A Win32 .. -DCMAKE_BUILD_TYPE=Release
cmake --build . --config Release
- name: Upload binaries to release
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
mkdir build
cd build
brew install ninja
cmake -G Ninja -T ClangCL .. -DCMAKE_BUILD_TYPE=Release
cmake -G Ninja .. -DCMAKE_BUILD_TYPE=Release
cmake --build . --config Release
cd EIMHost_artefacts/Release && zip -r -q EIMHost.zip EIMHost.app
Expand All @@ -100,7 +100,7 @@ jobs:
rm -r build
mkdir build
cd build
cmake -G Ninja -T ClangCL .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_OSX_ARCHITECTURES=arm64
cmake -G Ninja .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_OSX_ARCHITECTURES=arm64
cmake --build . --config Release
cd EIMHost_artefacts/Release && zip -r -q EIMHost.zip EIMHost.app
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
mkdir build
cd build
sudo apt-get install ninja-build libasound2-dev ladspa-sdk libfreetype6-dev libx11-dev libxcomposite-dev libxcursor-dev libxcursor-dev libxext-dev libxinerama-dev libxrandr-dev libxrender-dev
cmake -G Ninja -T ClangCL .. -DCMAKE_BUILD_TYPE=Release
cmake -G Ninja .. -DCMAKE_BUILD_TYPE=Release
cmake --build . --config Release
- name: Upload binaries to release
Expand Down

0 comments on commit cb73437

Please sign in to comment.