about summary refs log tree commit diff stats
path: root/.github/workflows
diff options
context:
space:
mode:
authorMarc <foxtrot@malloc.me>2021-11-30 22:39:26 +0000
committerMarc <foxtrot@malloc.me>2021-12-01 16:54:44 +0000
commitae6c98a48da409d040604aeffb84a38155fb5bac (patch)
treec27a8e28972209581ce3fba2130bf0c2b4f9c9c0 /.github/workflows
downloadlibwifi-ae6c98a48da409d040604aeffb84a38155fb5bac.tar.gz
libwifi-ae6c98a48da409d040604aeffb84a38155fb5bac.tar.bz2
libwifi-ae6c98a48da409d040604aeffb84a38155fb5bac.zip
Initial Commit
Signed-off-by: Marc <foxtrot@malloc.me>
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/x86_64.yml27
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 @@
1name: libwifi (64-Bit)
2
3on: [push]
4
5env:
6 # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
7 BUILD_TYPE: Release
8
9jobs:
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