Skip to content

Commit

Permalink
github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
irrld committed Oct 13, 2023
1 parent 8df306c commit e2c0377
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,18 +58,19 @@ jobs:
7z l "D:/a/chesstacos/chesstacos/zbin/glistzbin-win64-2.0.2.zip"
7z x "D:/a/chesstacos/chesstacos/zbin/glistzbin-win64-2.0.2.zip" -o"D:/a/chesstacos/chesstacos/zbin"
- name: List
run: |
cd ${{github.workspace}}
tree /f
#- name: List
# run: |
# cd ${{github.workspace}}
# tree /f

- name: Configure CMake

# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
run: cmake -B '${{github.workspace}}/build' -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DTOP_DIR='D:/a/chesstacos/chesstacos' -S .
run: cmake -B 'D:/a/chesstacos/chesstacos/build' -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DTOP_DIR='D:/a/chesstacos/chesstacos' -DCMAKE_C_COMPILER="D:/a/chesstacos/chesstacos/zbin/glistzbin-win64/clang64/bin/clang.exe" -DCMAKE_CXX_COMPILER="D:/a/chesstacos/chesstacos/zbin/glistzbin-win64/clang64/bin/clang++.exe" -G "CodeBlocks - Unix Makefiles" -S .

- name: Build
# Build your program with the given configuration
run: cmake --build '${{github.workspace}}/build' --config ${{env.BUILD_TYPE}}
run: cmake --build 'D:/a/chesstacos/chesstacos/build' --config ${{env.BUILD_TYPE}}


2 changes: 1 addition & 1 deletion znet

0 comments on commit e2c0377

Please sign in to comment.