Skip to content

Commit

Permalink
fix: using arm64-v8a arch - CI Nightly - fix
Browse files Browse the repository at this point in the history
  • Loading branch information
juanky201271 committed Sep 26, 2024
1 parent 73a8e01 commit f97b5dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ jobs:
- name: Set envs for arm64-v8a
if: ${{ env.ABI == 'arm64-v8a' }}
run: |
echo "AVD-ARCH=x86_64" >> $GITHUB_ENV
echo "AVD-ARCH=arm64-v8a" >> $GITHUB_ENV
echo "NEXTEST-ABI=arm64" >> $GITHUB_ENV
- name: Set envs for armeabi-v7a
if: ${{ env.ABI == 'armeabi-v7a' }}
run: |
echo "AVD-ARCH=x86" >> $GITHUB_ENV
echo "AVD-ARCH=arm64-v8a" >> $GITHUB_ENV
echo "NEXTEST-ABI=arm32" >> $GITHUB_ENV
- name: Remove unnecessary directories to free up space
Expand Down
20 changes: 0 additions & 20 deletions scripts/integration_tests_actions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -114,38 +114,18 @@ case "$abi" in
x86_64)
api_level_default="29"
api_target_default="default"
if [ $intel_host_os == true ]; then
arch="x86_64"
else
arch="arm64-v8a"
fi
;;
x86)
api_level_default="29"
api_target_default="default"
if [ $intel_host_os == true ]; then
arch="x86"
else
arch="arm64-v8a"
fi
;;
arm64-v8a)
api_level_default="29"
api_target_default="default"
if [ $intel_host_os == true ]; then
arch="arm64-v8a"
else
arch="arm64-v8a"
fi
;;
armeabi-v7a)
api_level_default="29"
api_target_default="default"
if [ $intel_host_os == true ]; then
arch="arm64-v8a"
else
arch="arm64-v8a"
fi
;;
*)
echo "Error: Invalid ABI" >&2
Expand Down

0 comments on commit f97b5dd

Please sign in to comment.