Check linux-gnueabihf also as linux os type in build script #169
This file contains hidden or 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: Windows | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Install CMake | |
| run: choco install cmake --installargs 'ADD_CMAKE_TO_PATH=System' --no-progress | |
| - name: Install dependencies | |
| run: choco install openssl --no-progress | |
| - name: Check versions | |
| run: | | |
| gcc --version | |
| cmake --version | |
| - name: Build with CMake | |
| run: | | |
| mkdir build | |
| cd build | |
| cmake .. | |
| cmake --build . |