File tree Expand file tree Collapse file tree 1 file changed +23
-3
lines changed Expand file tree Collapse file tree 1 file changed +23
-3
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,26 @@ steps:
14
14
displayName : ' Run a one-line script'
15
15
16
16
- script : |
17
- echo Add other tasks to build, test, and deploy your project.
18
- echo See https://aka.ms/yaml
19
- displayName : ' Run a multi-line script'
17
+ docker run --rm --privileged multiarch/qemu-user-static:register --reset
18
+ ls /proc/sys/fs/binfmt_misc/
19
+ condition : not(startsWith(variables['CONFIG'], 'linux_64'))
20
+ displayName : Configure binfmt_misc
21
+
22
+ - script : |
23
+ echo "FROM openblas/alpine:arm32
24
+ COPY . /tmp/openblas
25
+ RUN mkdir /tmp/openblas/build && \
26
+ cd /tmp/openblas/build && \
27
+ CC=gcc cmake -D DYNAMIC_ARCH=OFF \
28
+ -D TARGET=ARMV6 \
29
+ -D BUILD_SHARED_LIBS=ON \
30
+ -D BUILD_WITHOUT_LAPACK=ON \
31
+ -D BUILD_WITHOUT_CBLAS=ON \
32
+ -D CMAKE_BUILD_TYPE=Release ../ && \
33
+ cmake --build ." > Dockerfile
34
+ docker build .
35
+
36
+ # - script: |
37
+ # echo Add other tasks to build, test, and deploy your project.
38
+ # echo See https://aka.ms/yaml
39
+ # displayName: 'Run a multi-line script'
You can’t perform that action at this time.
0 commit comments