Skip to content

Commit

Permalink
FIX: sde utility not in $PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
reneme committed Nov 2, 2024
1 parent 74d3993 commit 023e3f8
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/scripts/ci/setup_gh_actions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ function build_and_install_jitterentropy() {
rm -rf "${jel_dir}"
}

if [ -z $REPO_CONFIG_LOADED ]; then
if [ -z "$REPO_CONFIG_LOADED" ]; then
echo "Repository configuration not loaded" >&2
exit 1
fi
Expand Down Expand Up @@ -138,8 +138,9 @@ if type -p "apt-get"; then
sudo apt-get -qq install qemu-user g++-s390x-linux-gnu

elif [ "$TARGET" = "sde" ]; then
wget https://downloadmirror.intel.com/823664/${INTEL_SDE_VERSION}.tar.xz
tar -xvf ${INTEL_SDE_VERSION}.tar.xz
wget "https://downloadmirror.intel.com/823664/${INTEL_SDE_VERSION}.tar.xz"
tar -xvf "${INTEL_SDE_VERSION}.tar.xz"
echo ${INTEL_SDE_VERSION} >> "$GITHUB_PATH"

elif [ "$TARGET" = "cross-android-arm32" ] || [ "$TARGET" = "cross-android-arm64" ] || [ "$TARGET" = "cross-android-arm64-amalgamation" ]; then
wget -nv "https://dl.google.com/android/repository/${ANDROID_NDK}-linux.zip"
Expand Down

0 comments on commit 023e3f8

Please sign in to comment.