File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 6969
7070 steps :
7171
72+ - name : Install Build Dependencies
73+ run : sudo apt-get install liblua5.4-dev libpython3-dev libjson-c-dev pkg-config lcov xsltproc -y
74+
7275 # Note - caches were updated in "prepare-dependencies" job so all three of these should be a hit
7376 - name : Retrieve Cached EdsLib Source
7477 uses : actions/cache@v3
@@ -88,10 +91,10 @@ jobs:
8891 # so in order to make this work it needs to adjust this.
8992 - name : Import OSAL
9093 run : |
94+ sudo find ${GITHUB_WORKSPACE}/osal-staging -type d -print0 | xargs -0 chmod go+rx
95+ sudo find ${GITHUB_WORKSPACE}/osal-staging -type f -print0 | xargs -0 chmod go+r
96+ sudo find ${GITHUB_WORKSPACE}/osal-staging -type f -path '*/bin/*' -print0 | xargs -0 chmod go+x
9197 sudo cp -rv -t / ${GITHUB_WORKSPACE}/osal-staging/*
92- sudo find /usr/local -type d -exec chmod go+rx {} \;
93- sudo find /usr/local -type f -exec chmod go+r {} \;
94- sudo find /usr/local -type f -path '*/bin/*' -exec chmod go+x {} \;
9598
9699 - name : Refresh Dynamic Linker Cache
97100 run : sudo ldconfig
You can’t perform that action at this time.
0 commit comments