Skip to content

Commit

Permalink
add linux build test
Browse files Browse the repository at this point in the history
  • Loading branch information
luc committed Jan 22, 2024
1 parent 8cc52a3 commit 2116bc3
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/build-x86_64-linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Build linux-x86

on:
workflow_dispatch:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v3

- name: Configure CMake
run: cmake -B ${{ github.workspace }}/build -DCMAKE_BUILD_TYPE=Debug -DSL_DOWNLOAD_DATA=OFF -DSL_BUILD_WITH_KTX=OFF -DSL_BUILD_WITH_MEDIAPIPE=OFF

- name: Build
run: cmake --build ${{ github.workspace }}/build

0 comments on commit 2116bc3

Please sign in to comment.