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 5757 parameters :
5858 arch : bionic-armhf
5959
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+
6069- job : snapcraft_x64
6170 pool :
6271 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