Skip to content

Commit

Permalink
workflow work
Browse files Browse the repository at this point in the history
  • Loading branch information
amock committed Nov 22, 2023
1 parent 1803ba9 commit b6bb217
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/core-ubu22.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]
- name: Build the project
run: cmake --build build
Expand Down
24 changes: 24 additions & 0 deletions .github/workflows/embree-ubu22.yml
Original file line number Diff line number Diff line change
@@ -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/[email protected]
- name: Build the project
run: cmake --build build
- name: Echo Test
run: |
ls

0 comments on commit b6bb217

Please sign in to comment.