File tree Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -131,16 +131,14 @@ jobs:
131
131
pip install -r scripts/build_scripts/python_requirements.txt
132
132
python scripts/restore_secrets.py --passphrase "${{ secrets.TEST_SECRET }}"
133
133
134
- - name : Denver's DEBUG
134
+ - name : " Rename d8 to dx (fixes java.lang.NumberFormatException: Not a number: 33x) "
135
135
shell : bash
136
136
run : |
137
- set +e
138
- set -xv
139
- env | grep ANDROID
140
- echo "Searching for d8 files in $ANDROID_HOME/build-tools"
141
- for D8_FILE in `find "$ANDROID_HOME"/build-tools -name 'd8*'`; do
142
- echo "$D8_FILE"
143
- done
137
+ for D8_FILE in `find "$ANDROID_HOME/build-tools" -type f -name 'd8*'`; do
138
+ DX_FILE="$(echo "$D8_FILE" | sed 's/d8/dx/')"
139
+ echo "cp $D8_FILE $DX_FILE"
140
+ cp "$D8_FILE" "$DX_FILE"
141
+ done
144
142
145
143
- name : Download C++ SDK
146
144
shell : bash
You can’t perform that action at this time.
0 commit comments