diff options
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/x86_64.yml | 27 |
1 files changed, 27 insertions, 0 deletions
| diff --git a/.github/workflows/x86_64.yml b/.github/workflows/x86_64.yml new file mode 100644 index 0000000..844a109 --- /dev/null +++ b/.github/workflows/x86_64.yml | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | name: libwifi (64-Bit) | ||
| 2 | |||
| 3 | on: [push] | ||
| 4 | |||
| 5 | env: | ||
| 6 | # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | ||
| 7 | BUILD_TYPE: Release | ||
| 8 | |||
| 9 | jobs: | ||
| 10 | build: | ||
| 11 | runs-on: ubuntu-latest | ||
| 12 | |||
| 13 | steps: | ||
| 14 | - uses: actions/checkout@v2 | ||
| 15 | |||
| 16 | - name: Create Build Environment | ||
| 17 | run: cmake -E make_directory ${{github.workspace}}/build | ||
| 18 | |||
| 19 | - name: Configure CMake | ||
| 20 | shell: bash | ||
| 21 | working-directory: ${{github.workspace}}/build | ||
| 22 | run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE | ||
| 23 | |||
| 24 | - name: Build X86_64 | ||
| 25 | working-directory: ${{github.workspace}}/build | ||
| 26 | shell: bash | ||
| 27 | run: cmake --build . --config $BUILD_TYPE | ||
