File tree 1 file changed +11
-4
lines changed
1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -14,27 +14,34 @@ jobs:
14
14
pool :
15
15
vmImage : ubuntu-latest
16
16
strategy :
17
- maxParallel : 2
17
+ maxParallel : 3
18
18
matrix :
19
19
debian_stable_amd64 :
20
20
image : buildpack-deps:stable
21
21
distribution : debian
22
22
release : stable
23
23
architecture : amd64
24
24
lua_package : liblua5.4-dev
25
- ubuntu_bionic_amd64 :
25
+ ubuntu_focal_amd64 :
26
26
image : buildpack-deps:focal
27
27
distribution : ubuntu
28
28
release : focal
29
29
architecture : amd64
30
30
lua_package : liblua5.3-dev
31
+ ubuntu_jammy_amd64 :
32
+ image : buildpack-deps:jammy
33
+ distribution : ubuntu
34
+ release : jammy
35
+ architecture : amd64
36
+ lua_package : liblua5.4-dev
31
37
container :
32
38
image : $[ variables['image'] ]
33
- options : " --name ci-container -v /usr/bin/docker:/tmp/docker:ro "
39
+ options : " --name ci-container"
34
40
steps :
35
41
- script : >
36
- /tmp/ docker exec -t -u 0 ci-container
42
+ docker exec --tty --user 0 ci-container
37
43
sh -c "apt update && DEBIAN_FRONTEND=noninteractive apt -o Dpkg::Options::="--force-confold" -y install sudo"
44
+ target: host
38
45
displayName: "Install sudo in container"
39
46
- script : >
40
47
sudo apt update && sudo DEBIAN_FRONTEND=noninteractive apt install -y --no-install-recommends
You can’t perform that action at this time.
0 commit comments