diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..4d36030 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,25 @@ +name: Build + +on: + workflow_dispatch + +env: + BUILD_TYPE: Release + +jobs: + build-ubuntu: + name: Build Ubuntu + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3.3.0 + with: + submodules: recursive + + - name: Build Plugin + working-directory: ${{github.workspace}}/build + env: + CXX: clang++ + run: | + cmake .. -DCMAKE_BUILD_TYPE=$BUILD_TYPE + cmake --build . --config $BUILD_TYPE -j4 +