Skip to content

Commit 2ee125d

Browse files
committed
Update dependencies in validation test workflow
1 parent 0ce8acd commit 2ee125d

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/validation-test.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,9 @@ jobs:
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

0 commit comments

Comments
 (0)