Skip to content

Commit

Permalink
chore: fix ld
Browse files Browse the repository at this point in the history
  • Loading branch information
jfrery committed Apr 16, 2024
1 parent b1342ed commit 4d226e5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run_use_cases_examples.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Set up Environment
run: |
# Setup commands if any, for example, installing dependencies, etc.
apt-get update && apt-get install -y python3-venv make git git-lfs
apt-get update && apt-get install -y python3-venv make git git-lfs binutils
- name: Checkout Code
uses: actions/checkout@v4
Expand Down
4 changes: 3 additions & 1 deletion script/make_utils/run_use_case_examples.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ setup_virtualenv() {
local venv_path="/tmp/virtualenv_$1"
echo "Setting up virtual environment in $venv_path..."
python3 -m venv "$venv_path"
# shellcheck disable=SC1090
source "${venv_path}/bin/activate"
echo "Virtual environment activated."
}
Expand All @@ -55,7 +56,8 @@ install_requirements() {

run_example() {
local example_dir=$1
local example_name=$(basename "$example_dir")
local example_name
example_name=$(basename "$example_dir")

if [ ! -f "${example_dir}/Makefile" ]; then
echo "No Makefile found in $example_dir, skipping..."
Expand Down

0 comments on commit 4d226e5

Please sign in to comment.