Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
dlon committed Oct 16, 2023
1 parent 33b9f09 commit 221a40a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/ci-runtests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -229,13 +229,13 @@ echo "**********************************"
# find "$PACKAGES_DIR/" -type f ! \( -name "*${OLD_APP_VERSION}_*" -o -name "*${OLD_APP_VERSION}.*" -o -name "*${NEW_APP_VERSION}*" \) -delete || true

function build_test_runner {
local targets=()
local target=""
if [[ "${TEST_OS}" =~ "debian"|"ubuntu"|"fedora" ]]; then
targets+=("x86_64-unknown-linux-gnu")
target="x86_64-unknown-linux-gnu"
elif [[ "${TEST_OS}" =~ "windows" ]]; then
targets+=("x86_64-pc-windows-gnu")
target="x86_64-pc-windows-gnu"
elif [[ "${TEST_OS}" =~ "macos" ]]; then
targets+=("aarch64-apple-darwin")
target="aarch64-apple-darwin"
fi
TARGET=$target ./build.sh
}
Expand Down

0 comments on commit 221a40a

Please sign in to comment.