From cb6c436612d6ca1695ab72973f2c61112225c2af Mon Sep 17 00:00:00 2001 From: Paul Reeves Date: Mon, 15 May 2023 12:11:01 +0200 Subject: [PATCH] Add doc note to explain why we do not run make install --- .drone.yml | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/.drone.yml b/.drone.yml index 3ea524a..c86fff0 100644 --- a/.drone.yml +++ b/.drone.yml @@ -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?