Skip to content

Commit b205eae

Browse files
authored
ci: add bionic arm7l container (microsoft#31)
1 parent 4b5eda6 commit b205eae

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed

azure-pipelines.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,15 @@ jobs:
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'

bionic-arm32v7/Dockerfile

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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

0 commit comments

Comments
 (0)