Skip to content

Commit

Permalink
build tbb on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
pca006132 committed May 31, 2022
1 parent 7d19d38 commit bc7f8dc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/manifold.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ jobs:
build:
strategy:
matrix:
backend: [CPP, OMP, CUDA]
backend: [CPP, OMP, TBB, CUDA]
runs-on: ubuntu-20.04
container:
image: docker://nvidia/cuda:11.6.0-devel-ubuntu20.04
steps:
- name: Install dependencies
run: |
apt-get -y update
DEBIAN_FRONTEND=noninteractive apt install -y libomp-dev git
DEBIAN_FRONTEND=noninteractive apt install -y libomp-dev git libtbb-dev pkg-config
- uses: actions/checkout@v3
with:
submodules: true
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
build_nix:
strategy:
matrix:
variant: [cpp, omp, cuda, js]
variant: [cpp, omp, cuda, js, tbb]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.4.0
Expand Down
1 change: 1 addition & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
{
packages.manifold-cpp = manifold { };
packages.manifold-omp = manifold { backend = "OMP"; runtime = [ pkgs.llvmPackages.openmp ]; };
packages.manifold-tbb = manifold { backend = "TBB"; runtime = [ pkgs.tbb pkgs.pkg-config ]; };
packages.manifold-cuda = manifold {
backend = "CUDA";
runtime = [
Expand Down

0 comments on commit bc7f8dc

Please sign in to comment.