DLL import/export fixes #65
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: macchina-remote-sdk-ci | |
on: [push] | |
jobs: | |
linux-gcc-cmake: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- run: sudo apt update && sudo apt install cmake ninja-build libssl-dev | |
- run: cmake -H. -Bcmake-build -GNinja -DENABLE_WEBTUNNELCLIENTLIB=ON && cmake --build cmake-build --target all | |
macos-clang-cmake: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v3 | |
- run: brew install openssl@3 ninja | |
- run: cmake -H. -Bcmake-build -GNinja -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl@3 -DENABLE_WEBTUNNELCLIENTLIB=ON && cmake --build cmake-build --target all | |
windows-msvc22x64-cmake: | |
runs-on: windows-2022 | |
steps: | |
- uses: actions/checkout@v3 | |
- run: cmake -G "Visual Studio 17 2022" -A x64 -S. -Bcmake-build -DENABLE_WEBTUNNELCLIENTLIB=ON | |
- run: cmake --build cmake-build --config Release | |
windows-msvc22x86-cmake: | |
runs-on: windows-2022 | |
steps: | |
- uses: actions/checkout@v3 | |
- run: cmake -G "Visual Studio 17 2022" -A Win32 -S. -Bcmake-build -DENABLE_WEBTUNNELCLIENTLIB=ON | |
- run: cmake --build cmake-build --config Release |