Skip to content

Commit

Permalink
workflow update + Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
eliazonta committed Oct 19, 2023
1 parent d1e65f7 commit 28cc940
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: C/C++ Binary build
name: C/C++ Binary build with OpenMP

on:
push:
Expand All @@ -16,4 +16,13 @@ jobs:
- name: clean
run: make clean
- name: make (run)
run: make
working-directory: ./
env: OMP_NUM_THREADS: 8
run: |
sudo apt-get update; sudo apt-get install -y libomp5 libomp-dev
echo OMP_NUM_THREADS:$OMP_NUM_THREADS
echo OMP_SCHEDULE:$OMP_SCHEDULE
echo OMP_DYNAMIC:$OMP_DYNAMIC
echo OMP_NESTED:$OMP_NESTED
make
ldd ./bin/K-Means3D
Binary file removed bin/K-means3D
Binary file not shown.
Binary file removed obj/k-means.o
Binary file not shown.
Binary file removed obj/main.o
Binary file not shown.
Binary file removed obj/point.o
Binary file not shown.
Binary file removed obj/readWrite.o
Binary file not shown.

0 comments on commit 28cc940

Please sign in to comment.