File tree 2 files changed +9
-3
lines changed
2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 30
30
key : ${{ runner.os }}-${{ hashFiles('**/third_party/install_android.sh') }}
31
31
- name : Install pip dependencies
32
32
run : pip install numpy six --no-cache-dir
33
+ - name : Set Java version
34
+ run : echo "JAVA_HOME=${JAVA_HOME_8_X64}" >> $GITHUB_ENV
33
35
- name : Download and install Android NDK/SDK
34
36
if : steps.cache.outputs.cache-hit != 'true'
35
37
run : ./third_party/install_android.sh
85
87
asset_content_type : application/octet-stream
86
88
87
89
android-aar :
88
- runs-on : ubuntu-18.04
90
+ runs-on : ubuntu-latest
89
91
steps :
90
92
- uses : actions/checkout@v3
91
93
with :
@@ -100,6 +102,8 @@ jobs:
100
102
key : ${{ runner.os }}-${{ hashFiles('**/third_party/install_android.sh') }}
101
103
- name : Install pip dependencies
102
104
run : pip install numpy six --no-cache-dir
105
+ - name : Set Java version
106
+ run : echo "JAVA_HOME=${JAVA_HOME_8_X64}" >> $GITHUB_ENV
103
107
- name : Download and install Android NDK/SDK
104
108
if : steps.cache.outputs.cache-hit != 'true'
105
109
run : ./third_party/install_android.sh
@@ -214,7 +218,7 @@ jobs:
214
218
215
219
manylinux-release-wheel :
216
220
name : Build release wheels for manylinux2014
217
- runs-on : ubuntu-18.04
221
+ runs-on : ubuntu-latest
218
222
strategy :
219
223
matrix :
220
224
python-version : [3.7, 3.8, 3.9, "3.10"]
Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ jobs:
113
113
run : PYTHONPATH=./ python larq_compute_engine/mlir/python/converter_test.py
114
114
115
115
Android_AAR :
116
- runs-on : ubuntu-18.04
116
+ runs-on : ubuntu-latest
117
117
if : " !contains(github.event.head_commit.message, 'ci-skip')"
118
118
119
119
steps :
@@ -130,6 +130,8 @@ jobs:
130
130
key : ${{ runner.os }}-${{ hashFiles('**/third_party/install_android.sh') }}
131
131
- name : Install pip dependencies
132
132
run : pip install numpy six --no-cache-dir
133
+ - name : Set Java version
134
+ run : echo "JAVA_HOME=${JAVA_HOME_8_X64}" >> $GITHUB_ENV
133
135
- name : Download and install Android NDK/SDK
134
136
if : steps.cache.outputs.cache-hit != 'true'
135
137
run : ./third_party/install_android.sh
You can’t perform that action at this time.
0 commit comments