Replaced all new/delete by vectors in exercises #30
This file contains 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: Build Linux x86-64 | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: apt update | |
run: sudo apt-get update | |
- name: install xorg-dev | |
run: sudo apt-get install -y xorg-dev | |
- name: install libtbb | |
run: sudo apt-get install -y libtbb-dev | |
- 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 |