3
0
Fork 0

Add doc note to explain why we do not run make install

This commit is contained in:
Paul Reeves 2023-05-15 12:11:01 +02:00
parent 914ac88e93
commit cb6c436612
1 changed files with 14 additions and 12 deletions

View File

@ -60,18 +60,20 @@ steps:
status:
- success
- name: build-install
<<: *anchor_compiler_image
volumes:
- name: temp
path: /tmp
- name: cache
path: /tmp/cache
commands:
- make install
- ls -R -l /usr/local/* | grep tfm
depends_on:
- build-success
# ### NOTE build-install is of no use to us for fireswarm as it only installs the static library and header
# ### It is easier to pull shared lib from .libs/libtfm.so.1.0.0 and header from src/headers/tfm.h
#- name: build-install
#<<: *anchor_compiler_image
#volumes:
#- name: temp
#path: /tmp
#- name: cache
#path: /tmp/cache
#commands:
#- make install
#- ls -R -l /usr/local/* | grep tfm
#depends_on:
#- build-success
# ### TODO package up the contents of .libs and maybe the public header?