1
0

chore: add github action workflows

This commit is contained in:
2025-12-23 13:11:37 +08:00
parent 7a2edb92b3
commit a077604c7d
6 changed files with 162 additions and 36 deletions

18
.github/macos_build.sh vendored Normal file
View File

@@ -0,0 +1,18 @@
#!/bin/bash
# Create build directory and enter it
mkdir bin
cd bin
# Create internal build and install directory, then enter it
mkdir build
mkdir install
cd build
# Build in Release mode
cmake -DCMAKE_BUILD_TYPE=Release ../..
cmake --build .
cmake --install . --prefix=../install
# Back to root directory
cd ..
cd ..