diff --git a/.github/workflows/core-ubu22.yml b/.github/workflows/core-ubu22.yml index a597788..fb30974 100644 --- a/.github/workflows/core-ubu22.yml +++ b/.github/workflows/core-ubu22.yml @@ -10,12 +10,18 @@ on: branches: - '*' jobs: - build: + core_deps: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 - name: Install APT Deps run: sudo apt install -y libboost-dev libeigen3-dev libassimp-dev + build: + runs-on: ubuntu-22.04 + needs: [core_deps] + steps: + - uses: actions/checkout@v3 + # - name: Install APT Deps + # run: sudo apt install -y libboost-dev libeigen3-dev libassimp-dev - uses: threeal/cmake-action@v1.3.0 - name: Build the project run: cmake --build build diff --git a/.github/workflows/embree-ubu22.yml b/.github/workflows/embree-ubu22.yml new file mode 100644 index 0000000..a597788 --- /dev/null +++ b/.github/workflows/embree-ubu22.yml @@ -0,0 +1,24 @@ +name: core-ubu22 +on: + push: + branches: + - 'no' + pull_request: + branches: + - 'no' + workflow_dispatch: + branches: + - '*' +jobs: + build: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v3 + - name: Install APT Deps + run: sudo apt install -y libboost-dev libeigen3-dev libassimp-dev + - uses: threeal/cmake-action@v1.3.0 + - name: Build the project + run: cmake --build build + - name: Echo Test + run: | + ls \ No newline at end of file