mirror of
https://github.com/ValveSoftware/GameNetworkingSockets.git
synced 2026-05-29 16:20:34 +00:00
45 lines
1.5 KiB
YAML
45 lines
1.5 KiB
YAML
name: MacOS
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
|
|
build-and-test-macos:
|
|
name: Build And Test MacOS
|
|
runs-on: macos-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Install Vcpkg
|
|
run: |
|
|
git clone https://github.com/Microsoft/vcpkg.git
|
|
cd vcpkg
|
|
./bootstrap-vcpkg.sh
|
|
./vcpkg integrate install
|
|
|
|
- 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=Release
|
|
-DCMAKE_TOOLCHAIN_FILE=${{ github.workspace }}/vcpkg/scripts/buildsystems/vcpkg.cmake
|
|
-DBUILD_TESTS=ON
|
|
|
|
- name: Build
|
|
# Build the program with the given configuration
|
|
run: cmake --build ${{github.workspace}}/build --config Release
|
|
|
|
#- name: Test
|
|
# working-directory: ${{github.workspace}}/build
|
|
# # Execute tests defined by the CMake configuration.
|
|
# # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
|
|
# run: ctest -C Release
|
|
|
|
- name: Test crypto
|
|
working-directory: ${{github.workspace}}/build/bin
|
|
run: ./test_crypto
|
|
shell: bash
|
|
|
|
- name: Test connection
|
|
working-directory: ${{github.workspace}}/build/bin
|
|
run: ./test_connection identity quick lane_quick_queueanddrain lane_quick_priority_and_background
|
|
shell: bash
|