File tree Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 57
57
parameters :
58
58
arch : bionic-armhf
59
59
60
+ - job : bionic_arm32v7
61
+ pool :
62
+ vmImage : ' ubuntu-latest'
63
+ steps :
64
+ - template : build.yml
65
+ parameters :
66
+ qemu : ' true'
67
+ arch : bionic-arm32v7
68
+
60
69
- job : snapcraft_x64
61
70
pool :
62
71
vmImage : ' ubuntu-latest'
Original file line number Diff line number Diff line change
1
+ FROM arm32v7/ubuntu:bionic
2
+
3
+ ARG DEBIAN_FRONTEND=noninteractive
4
+
5
+ RUN apt-get update && apt-get install -y --no-install-recommends \
6
+ software-properties-common \
7
+ gcc \
8
+ g++ \
9
+ binutils \
10
+ build-essential \
11
+ git \
12
+ pkg-config \
13
+ sudo \
14
+ apt-transport-https \
15
+ ca-certificates \
16
+ curl \
17
+ gnupg \
18
+ make \
19
+ python3 \
20
+ unzip
21
+
22
+ # Set python3 as default
23
+ RUN update-alternatives --install /usr/bin/python python /usr/bin/python3 1
24
+ RUN python --version
25
+
26
+ RUN mkdir -p /root/vscode
27
+ WORKDIR /root/vscode
You can’t perform that action at this time.
0 commit comments