File tree 2 files changed +9
-6
lines changed
docker/armv7-unknown-linux-gnueabihf
2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -117,13 +117,13 @@ jobs:
117
117
strategy :
118
118
matrix :
119
119
target :
120
- - x86_64-unknown-linux-musl
120
+ - x86_64-unknown-linux-gnu
121
121
- armv7-unknown-linux-gnueabihf
122
122
- x86_64-apple-darwin
123
123
- x86_64-pc-windows-msvc
124
124
- x86_64-unknown-freebsd
125
125
include :
126
- - target : x86_64-unknown-linux-musl
126
+ - target : x86_64-unknown-linux-gnu
127
127
os : ubuntu-latest
128
128
- target : armv7-unknown-linux-gnueabihf
129
129
os : ubuntu-latest
@@ -137,9 +137,9 @@ jobs:
137
137
use_cross : true
138
138
steps :
139
139
- uses : actions/checkout@v2
140
- - name : Install packages (x86_64-unknown-linux-musl )
141
- if : matrix.target == 'x86_64-unknown-linux-musl '
142
- run : sudo apt-get install libsqlite3-dev musl-tools
140
+ - name : Install packages (x86_64-unknown-linux-gnu )
141
+ if : matrix.target == 'x86_64-unknown-linux-gnu '
142
+ run : sudo apt-get install libsqlite3-dev libssl-dev
143
143
- name : Install packages (Windows)
144
144
if : runner.os == 'Windows'
145
145
run : vcpkg install sqlite3:x64-windows
Original file line number Diff line number Diff line change @@ -2,4 +2,7 @@ FROM rustembedded/cross:armv7-unknown-linux-gnueabihf-0.2.1
2
2
3
3
RUN dpkg --add-architecture armhf && \
4
4
apt-get update && \
5
- apt-get install --assume-yes libsqlite3-dev libsqlite3-dev:armhf
5
+ apt-get install --assume-yes libsqlite3-dev libsqlite3-dev:armhf libssl-dev:armhf
6
+
7
+ ENV PKG_CONFIG_ALLOW_CROSS_armv7_unknown_linux_gnueabihf=1 \
8
+ PKG_CONFIG_PATH_armv7_unknown_linux_gnueabihf='/usr/lib/arm-linux-gnueabihf/pkgconfig'
You can’t perform that action at this time.
0 commit comments