Skip to content

Add support for browsers #562

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
mattbroekhuis opened this issue Sep 16, 2022 · 16 comments
Closed

Add support for browsers #562

mattbroekhuis opened this issue Sep 16, 2022 · 16 comments

Comments

@mattbroekhuis
Copy link

When upgrading from 5.0 -> 6.0 to get the latest nodejs version, I discovered that chrome is no longer in /usr/bin.

Is this by design? We like to run browser tests with it.

@kretschmannj
Copy link

+1

@rgant
Copy link

rgant commented Oct 24, 2022

Until this is resolved (seems like a recurring problem: #439 )

I added this to my buildspec.yml

phases:
  install:
    runtime-versions:
      nodejs: 16
    commands:
      # Until Chrome is part of the image: https://github.com/aws/aws-codebuild-docker-images/issues/562
      - echo Installing Chrome
      # https://github.com/aws/aws-codebuild-docker-images/blob/48b53e25cf36dcb1e0b124bc7bebfb342d161b91/ubuntu/standard/5.0/Dockerfile#L74
      - wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | apt-key add -
      - echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" | tee /etc/apt/sources.list.d/google.list
      - apt-get -qq update
      - apt-get -qq install -y google-chrome-stable
      - google-chrome --version
      # https://github.com/aws/aws-codebuild-docker-images/blob/48b53e25cf36dcb1e0b124bc7bebfb342d161b91/ubuntu/standard/5.0/Dockerfile#L82
      - CHROME_VERSION=`google-chrome --version | awk -F '[ .]' '{print $3"."$4"."$5}'`
      - CHROME_DRIVER_VERSION=`wget -qO- chromedriver.storage.googleapis.com/LATEST_RELEASE_$CHROME_VERSION`
      - wget -qO /tmp/chromedriver_linux64.zip https://chromedriver.storage.googleapis.com/$CHROME_DRIVER_VERSION/chromedriver_linux64.zip
      - unzip -q /tmp/chromedriver_linux64.zip -d /opt
      - rm /tmp/chromedriver_linux64.zip
      - mv /opt/chromedriver /opt/chromedriver-$CHROME_DRIVER_VERSION
      - chmod 755 /opt/chromedriver-$CHROME_DRIVER_VERSION
      - ln -s /opt/chromedriver-$CHROME_DRIVER_VERSION /usr/bin/chromedriver
      - chromedriver --version
      # END Chrome setup
      - echo Installing NPM dependencies
      - npm ci --quiet --prefer-offline --no-fund --no-audit --unsafe-perm

Which is mostly copied from the 5.0 Dockerfile. And it makes the builds 2-3 minutes slower IME.

@rgant
Copy link

rgant commented Oct 24, 2022

The output is very noisy :-(

Click to expand
[Container] 2022/10/24 17:35:07 Running command echo Installing Chrome
--
37 | Installing Chrome
38 |  
39 | [Container] 2022/10/24 17:35:07 Running command wget -q -O - https://dl.google.com/linux/linux_signing_key.pub \| apt-key add -
40 | Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)).
41 | OK
42 |  
43 | [Container] 2022/10/24 17:35:07 Running command echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" \| tee /etc/apt/sources.list.d/google.list
44 | deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main
45 |  
46 | [Container] 2022/10/24 17:35:07 Running command apt-get -qq update
47 | W: http://dl.google.com/linux/chrome/deb/dists/stable/InRelease: Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see the DEPRECATION section in apt-key(8) for details.
48 | W: https://apt.corretto.aws/dists/stable/InRelease: Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see the DEPRECATION section in apt-key(8) for details.
49 | W: https://dl.yarnpkg.com/debian/dists/stable/InRelease: Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see the DEPRECATION section in apt-key(8) for details.
50 |  
51 | [Container] 2022/10/24 17:35:11 Running command apt-get -qq install -y google-chrome-stable
52 | debconf: unable to initialize frontend: Dialog
53 | debconf: (TERM is not set, so the dialog frontend is not usable.)
54 | debconf: falling back to frontend: Readline
55 | debconf: unable to initialize frontend: Readline
56 | debconf: (This frontend requires a controlling tty.)
57 | debconf: falling back to frontend: Teletype
58 | dpkg-preconfigure: unable to re-open stdin:
59 | Selecting previously unselected package fonts-liberation.
60 | (Reading database ...
61 | (Reading database ... 5%
62 | (Reading database ... 10%
63 | (Reading database ... 15%
64 | (Reading database ... 20%
65 | (Reading database ... 25%
66 | (Reading database ... 30%
67 | (Reading database ... 35%
68 | (Reading database ... 40%
69 | (Reading database ... 45%
70 | (Reading database ... 50%
71 | (Reading database ... 55%
72 | (Reading database ... 60%
73 | (Reading database ... 65%
74 | (Reading database ... 70%
75 | (Reading database ... 75%
76 | (Reading database ... 80%
77 | (Reading database ... 85%
78 | (Reading database ... 90%
79 | (Reading database ... 95%
80 | (Reading database ... 100%
81 | (Reading database ... 33867 files and directories currently installed.)
82 | Preparing to unpack .../000-fonts-liberation_1%3a1.07.4-11_all.deb ...
83 | Unpacking fonts-liberation (1:1.07.4-11) ...
84 | Selecting previously unselected package libasound2-data.
85 | Preparing to unpack .../001-libasound2-data_1.2.6.1-1ubuntu1_all.deb ...
86 | Unpacking libasound2-data (1.2.6.1-1ubuntu1) ...
87 | Selecting previously unselected package libasound2:amd64.
88 | Preparing to unpack .../002-libasound2_1.2.6.1-1ubuntu1_amd64.deb ...
89 | Unpacking libasound2:amd64 (1.2.6.1-1ubuntu1) ...
90 | Selecting previously unselected package libatk1.0-data.
91 | Preparing to unpack .../003-libatk1.0-data_2.36.0-3build1_all.deb ...
92 | Unpacking libatk1.0-data (2.36.0-3build1) ...
93 | Selecting previously unselected package libatk1.0-0:amd64.
94 | Preparing to unpack .../004-libatk1.0-0_2.36.0-3build1_amd64.deb ...
95 | Unpacking libatk1.0-0:amd64 (2.36.0-3build1) ...
96 | Selecting previously unselected package libxi6:amd64.
97 | Preparing to unpack .../005-libxi6_2%3a1.8-1build1_amd64.deb ...
98 | Unpacking libxi6:amd64 (2:1.8-1build1) ...
99 | Selecting previously unselected package libatspi2.0-0:amd64.
100 | Preparing to unpack .../006-libatspi2.0-0_2.44.0-3_amd64.deb ...
101 | Unpacking libatspi2.0-0:amd64 (2.44.0-3) ...
102 | Selecting previously unselected package libatk-bridge2.0-0:amd64.
103 | Preparing to unpack .../007-libatk-bridge2.0-0_2.38.0-3_amd64.deb ...
104 | Unpacking libatk-bridge2.0-0:amd64 (2.38.0-3) ...
105 | Selecting previously unselected package libavahi-common-data:amd64.
106 | Preparing to unpack .../008-libavahi-common-data_0.8-5ubuntu5_amd64.deb ...
107 | Unpacking libavahi-common-data:amd64 (0.8-5ubuntu5) ...
108 | Selecting previously unselected package libavahi-common3:amd64.
109 | Preparing to unpack .../009-libavahi-common3_0.8-5ubuntu5_amd64.deb ...
110 | Unpacking libavahi-common3:amd64 (0.8-5ubuntu5) ...
111 | Selecting previously unselected package libavahi-client3:amd64.
112 | Preparing to unpack .../010-libavahi-client3_0.8-5ubuntu5_amd64.deb ...
113 | Unpacking libavahi-client3:amd64 (0.8-5ubuntu5) ...
114 | Selecting previously unselected package libcups2:amd64.
115 | Preparing to unpack .../011-libcups2_2.4.1op1-1ubuntu4.1_amd64.deb ...
116 | Unpacking libcups2:amd64 (2.4.1op1-1ubuntu4.1) ...
117 | Selecting previously unselected package libwayland-server0:amd64.
118 | Preparing to unpack .../012-libwayland-server0_1.20.0-1ubuntu0.1_amd64.deb ...
119 | Unpacking libwayland-server0:amd64 (1.20.0-1ubuntu0.1) ...
120 | Selecting previously unselected package libgbm1:amd64.
121 | Preparing to unpack .../013-libgbm1_22.0.5-0ubuntu0.1_amd64.deb ...
122 | Unpacking libgbm1:amd64 (22.0.5-0ubuntu0.1) ...
123 | Selecting previously unselected package hicolor-icon-theme.
124 | Preparing to unpack .../014-hicolor-icon-theme_0.17-2_all.deb ...
125 | Unpacking hicolor-icon-theme (0.17-2) ...
126 | Selecting previously unselected package gtk-update-icon-cache.
127 | Preparing to unpack .../015-gtk-update-icon-cache_3.24.33-1ubuntu2_amd64.deb ...
128 | Unpacking gtk-update-icon-cache (3.24.33-1ubuntu2) ...
129 | Selecting previously unselected package humanity-icon-theme.
130 | Preparing to unpack .../016-humanity-icon-theme_0.6.16_all.deb ...
131 | Unpacking humanity-icon-theme (0.6.16) ...
132 | Selecting previously unselected package ubuntu-mono.
133 | Preparing to unpack .../017-ubuntu-mono_20.10-0ubuntu2_all.deb ...
134 | Unpacking ubuntu-mono (20.10-0ubuntu2) ...
135 | Selecting previously unselected package adwaita-icon-theme.
136 | Preparing to unpack .../018-adwaita-icon-theme_41.0-1ubuntu1_all.deb ...
137 | Unpacking adwaita-icon-theme (41.0-1ubuntu1) ...
138 | Selecting previously unselected package libcolord2:amd64.
139 | Preparing to unpack .../019-libcolord2_1.4.6-1_amd64.deb ...
140 | Unpacking libcolord2:amd64 (1.4.6-1) ...
141 | Selecting previously unselected package libepoxy0:amd64.
142 | Preparing to unpack .../020-libepoxy0_1.5.10-1_amd64.deb ...
143 | Unpacking libepoxy0:amd64 (1.5.10-1) ...
144 | Selecting previously unselected package libwayland-client0:amd64.
145 | Preparing to unpack .../021-libwayland-client0_1.20.0-1ubuntu0.1_amd64.deb ...
146 | Unpacking libwayland-client0:amd64 (1.20.0-1ubuntu0.1) ...
147 | Selecting previously unselected package libwayland-cursor0:amd64.
148 | Preparing to unpack .../022-libwayland-cursor0_1.20.0-1ubuntu0.1_amd64.deb ...
149 | Unpacking libwayland-cursor0:amd64 (1.20.0-1ubuntu0.1) ...
150 | Selecting previously unselected package libwayland-egl1:amd64.
151 | Preparing to unpack .../023-libwayland-egl1_1.20.0-1ubuntu0.1_amd64.deb ...
152 | Unpacking libwayland-egl1:amd64 (1.20.0-1ubuntu0.1) ...
153 | Selecting previously unselected package libxcomposite1:amd64.
154 | Preparing to unpack .../024-libxcomposite1_1%3a0.4.5-1build2_amd64.deb ...
155 | Unpacking libxcomposite1:amd64 (1:0.4.5-1build2) ...
156 | Selecting previously unselected package libxcursor1:amd64.
157 | Preparing to unpack .../025-libxcursor1_1%3a1.2.0-2build4_amd64.deb ...
158 | Unpacking libxcursor1:amd64 (1:1.2.0-2build4) ...
159 | Selecting previously unselected package libxdamage1:amd64.
160 | Preparing to unpack .../026-libxdamage1_1%3a1.1.5-2build2_amd64.deb ...
161 | Unpacking libxdamage1:amd64 (1:1.1.5-2build2) ...
162 | Selecting previously unselected package libxinerama1:amd64.
163 | Preparing to unpack .../027-libxinerama1_2%3a1.1.4-3_amd64.deb ...
164 | Unpacking libxinerama1:amd64 (2:1.1.4-3) ...
165 | Selecting previously unselected package libxkbcommon0:amd64.
166 | Preparing to unpack .../028-libxkbcommon0_1.4.0-1_amd64.deb ...
167 | Unpacking libxkbcommon0:amd64 (1.4.0-1) ...
168 | Selecting previously unselected package libxrandr2:amd64.
169 | Preparing to unpack .../029-libxrandr2_2%3a1.5.2-1build1_amd64.deb ...
170 | Unpacking libxrandr2:amd64 (2:1.5.2-1build1) ...
171 | Selecting previously unselected package dbus-user-session.
172 | Preparing to unpack .../030-dbus-user-session_1.12.20-2ubuntu4_amd64.deb ...
173 | Unpacking dbus-user-session (1.12.20-2ubuntu4) ...
174 | Selecting previously unselected package libdconf1:amd64.
175 | Preparing to unpack .../031-libdconf1_0.40.0-3_amd64.deb ...
176 | Unpacking libdconf1:amd64 (0.40.0-3) ...
177 | Selecting previously unselected package dconf-service.
178 | Preparing to unpack .../032-dconf-service_0.40.0-3_amd64.deb ...
179 | Unpacking dconf-service (0.40.0-3) ...
180 | Selecting previously unselected package dconf-gsettings-backend:amd64.
181 | Preparing to unpack .../033-dconf-gsettings-backend_0.40.0-3_amd64.deb ...
182 | Unpacking dconf-gsettings-backend:amd64 (0.40.0-3) ...
183 | Selecting previously unselected package libgtk-3-common.
184 | Preparing to unpack .../034-libgtk-3-common_3.24.33-1ubuntu2_all.deb ...
185 | Unpacking libgtk-3-common (3.24.33-1ubuntu2) ...
186 | Selecting previously unselected package libgtk-3-0:amd64.
187 | Preparing to unpack .../035-libgtk-3-0_3.24.33-1ubuntu2_amd64.deb ...
188 | Unpacking libgtk-3-0:amd64 (3.24.33-1ubuntu2) ...
189 | Selecting previously unselected package xdg-utils.
190 | Preparing to unpack .../036-xdg-utils_1.1.3-4.1ubuntu3~22.04.1_all.deb ...
191 | Unpacking xdg-utils (1.1.3-4.1ubuntu3~22.04.1) ...
192 | Selecting previously unselected package google-chrome-stable.
193 | Preparing to unpack .../037-google-chrome-stable_106.0.5249.119-1_amd64.deb ...
194 | Unpacking google-chrome-stable (106.0.5249.119-1) ...
195 | Selecting previously unselected package libtext-iconv-perl.
196 | Preparing to unpack .../038-libtext-iconv-perl_1.7-7build3_amd64.deb ...
197 | Unpacking libtext-iconv-perl (1.7-7build3) ...
198 | Selecting previously unselected package udev.
199 | Preparing to unpack .../039-udev_249.11-0ubuntu3.6_amd64.deb ...
200 | Unpacking udev (249.11-0ubuntu3.6) ...
201 | Selecting previously unselected package alsa-topology-conf.
202 | Preparing to unpack .../040-alsa-topology-conf_1.2.5.1-2_all.deb ...
203 | Unpacking alsa-topology-conf (1.2.5.1-2) ...
204 | Selecting previously unselected package alsa-ucm-conf.
205 | Preparing to unpack .../041-alsa-ucm-conf_1.2.6.3-1ubuntu1_all.deb ...
206 | Unpacking alsa-ucm-conf (1.2.6.3-1ubuntu1) ...
207 | Selecting previously unselected package libxtst6:amd64.
208 | Preparing to unpack .../042-libxtst6_2%3a1.2.3-1build4_amd64.deb ...
209 | Unpacking libxtst6:amd64 (2:1.2.3-1build4) ...
210 | Selecting previously unselected package session-migration.
211 | Preparing to unpack .../043-session-migration_0.3.6_amd64.deb ...
212 | Unpacking session-migration (0.3.6) ...
213 | Selecting previously unselected package gsettings-desktop-schemas.
214 | Preparing to unpack .../044-gsettings-desktop-schemas_42.0-1ubuntu1_all.deb ...
215 | Unpacking gsettings-desktop-schemas (42.0-1ubuntu1) ...
216 | Selecting previously unselected package at-spi2-core.
217 | Preparing to unpack .../045-at-spi2-core_2.44.0-3_amd64.deb ...
218 | Unpacking at-spi2-core (2.44.0-3) ...
219 | Selecting previously unselected package libclone-perl.
220 | Preparing to unpack .../046-libclone-perl_0.45-1build3_amd64.deb ...
221 | Unpacking libclone-perl (0.45-1build3) ...
222 | Selecting previously unselected package libdata-dump-perl.
223 | Preparing to unpack .../047-libdata-dump-perl_1.25-1_all.deb ...
224 | Unpacking libdata-dump-perl (1.25-1) ...
225 | Selecting previously unselected package libencode-locale-perl.
226 | Preparing to unpack .../048-libencode-locale-perl_1.05-1.1_all.deb ...
227 | Unpacking libencode-locale-perl (1.05-1.1) ...
228 | Selecting previously unselected package libipc-system-simple-perl.
229 | Preparing to unpack .../049-libipc-system-simple-perl_1.30-1_all.deb ...
230 | Unpacking libipc-system-simple-perl (1.30-1) ...
231 | Selecting previously unselected package libfile-basedir-perl.
232 | Preparing to unpack .../050-libfile-basedir-perl_0.09-1_all.deb ...
233 | Unpacking libfile-basedir-perl (0.09-1) ...
234 | Selecting previously unselected package liburi-perl.
235 | Preparing to unpack .../051-liburi-perl_5.10-1_all.deb ...
236 | Unpacking liburi-perl (5.10-1) ...
237 | Selecting previously unselected package libfile-desktopentry-perl.
238 | Preparing to unpack .../052-libfile-desktopentry-perl_0.22-2_all.deb ...
239 | Unpacking libfile-desktopentry-perl (0.22-2) ...
240 | Selecting previously unselected package libfile-listing-perl.
241 | Preparing to unpack .../053-libfile-listing-perl_6.14-1_all.deb ...
242 | Unpacking libfile-listing-perl (6.14-1) ...
243 | Selecting previously unselected package libfile-mimeinfo-perl.
244 | Preparing to unpack .../054-libfile-mimeinfo-perl_0.31-1_all.deb ...
245 | Unpacking libfile-mimeinfo-perl (0.31-1) ...
246 | Selecting previously unselected package libfont-afm-perl.
247 | Preparing to unpack .../055-libfont-afm-perl_1.20-3_all.deb ...
248 | Unpacking libfont-afm-perl (1.20-3) ...
249 | Selecting previously unselected package libgtk-3-bin.
250 | Preparing to unpack .../056-libgtk-3-bin_3.24.33-1ubuntu2_amd64.deb ...
251 | Unpacking libgtk-3-bin (3.24.33-1ubuntu2) ...
252 | Selecting previously unselected package libllvm11:amd64.
253 | Preparing to unpack .../057-libllvm11_1%3a11.1.0-6_amd64.deb ...
254 | Unpacking libllvm11:amd64 (1:11.1.0-6) ...
255 | Selecting previously unselected package libphobos2-ldc-shared98:amd64.
256 | Preparing to unpack .../058-libphobos2-ldc-shared98_1%3a1.28.0-1ubuntu1_amd64.deb ...
257 | Unpacking libphobos2-ldc-shared98:amd64 (1:1.28.0-1ubuntu1) ...
258 | Selecting previously unselected package libgtkd-3-0:amd64.
259 | Preparing to unpack .../059-libgtkd-3-0_3.10.0-1ubuntu1_amd64.deb ...
260 | Unpacking libgtkd-3-0:amd64 (3.10.0-1ubuntu1) ...
261 | Selecting previously unselected package libhtml-tagset-perl.
262 | Preparing to unpack .../060-libhtml-tagset-perl_3.20-4_all.deb ...
263 | Unpacking libhtml-tagset-perl (3.20-4) ...
264 | Selecting previously unselected package libhtml-parser-perl:amd64.
265 | Preparing to unpack .../061-libhtml-parser-perl_3.76-1build2_amd64.deb ...
266 | Unpacking libhtml-parser-perl:amd64 (3.76-1build2) ...
267 | Selecting previously unselected package libio-html-perl.
268 | Preparing to unpack .../062-libio-html-perl_1.004-2_all.deb ...
269 | Unpacking libio-html-perl (1.004-2) ...
270 | Selecting previously unselected package liblwp-mediatypes-perl.
271 | Preparing to unpack .../063-liblwp-mediatypes-perl_6.04-1_all.deb ...
272 | Unpacking liblwp-mediatypes-perl (6.04-1) ...
273 | Selecting previously unselected package libhttp-message-perl.
274 | Preparing to unpack .../064-libhttp-message-perl_6.36-1_all.deb ...
275 | Unpacking libhttp-message-perl (6.36-1) ...
276 | Selecting previously unselected package libhtml-form-perl.
277 | Preparing to unpack .../065-libhtml-form-perl_6.07-1_all.deb ...
278 | Unpacking libhtml-form-perl (6.07-1) ...
279 | Selecting previously unselected package libhtml-tree-perl.
280 | Preparing to unpack .../066-libhtml-tree-perl_5.07-2_all.deb ...
281 | Unpacking libhtml-tree-perl (5.07-2) ...
282 | Selecting previously unselected package libhtml-format-perl.
283 | Preparing to unpack .../067-libhtml-format-perl_2.12-1.1_all.deb ...
284 | Unpacking libhtml-format-perl (2.12-1.1) ...
285 | Selecting previously unselected package libhttp-cookies-perl.
286 | Preparing to unpack .../068-libhttp-cookies-perl_6.10-1_all.deb ...
287 | Unpacking libhttp-cookies-perl (6.10-1) ...
288 | Selecting previously unselected package libhttp-daemon-perl.
289 | Preparing to unpack .../069-libhttp-daemon-perl_6.13-1ubuntu0.1_all.deb ...
290 | Unpacking libhttp-daemon-perl (6.13-1ubuntu0.1) ...
291 | Selecting previously unselected package libhttp-negotiate-perl.
292 | Preparing to unpack .../070-libhttp-negotiate-perl_6.01-1_all.deb ...
293 | Unpacking libhttp-negotiate-perl (6.01-1) ...
294 | Selecting previously unselected package perl-openssl-defaults:amd64.
295 | Preparing to unpack .../071-perl-openssl-defaults_5build2_amd64.deb ...
296 | Unpacking perl-openssl-defaults:amd64 (5build2) ...
297 | Selecting previously unselected package libnet-ssleay-perl:amd64.
298 | Preparing to unpack .../072-libnet-ssleay-perl_1.92-1build2_amd64.deb ...
299 | Unpacking libnet-ssleay-perl:amd64 (1.92-1build2) ...
300 | Selecting previously unselected package libio-socket-ssl-perl.
301 | Preparing to unpack .../073-libio-socket-ssl-perl_2.074-2_all.deb ...
302 | Unpacking libio-socket-ssl-perl (2.074-2) ...
303 | Selecting previously unselected package libio-stringy-perl.
304 | Preparing to unpack .../074-libio-stringy-perl_2.111-3_all.deb ...
305 | Unpacking libio-stringy-perl (2.111-3) ...
306 | Selecting previously unselected package libnet-http-perl.
307 | Preparing to unpack .../075-libnet-http-perl_6.22-1_all.deb ...
308 | Unpacking libnet-http-perl (6.22-1) ...
309 | Selecting previously unselected package libtry-tiny-perl.
310 | Preparing to unpack .../076-libtry-tiny-perl_0.31-1_all.deb ...
311 | Unpacking libtry-tiny-perl (0.31-1) ...
312 | Selecting previously unselected package libwww-robotrules-perl.
313 | Preparing to unpack .../077-libwww-robotrules-perl_6.02-1_all.deb ...
314 | Unpacking libwww-robotrules-perl (6.02-1) ...
315 | Selecting previously unselected package libwww-perl.
316 | Preparing to unpack .../078-libwww-perl_6.61-1_all.deb ...
317 | Unpacking libwww-perl (6.61-1) ...
318 | Selecting previously unselected package liblwp-protocol-https-perl.
319 | Preparing to unpack .../079-liblwp-protocol-https-perl_6.10-1_all.deb ...
320 | Unpacking liblwp-protocol-https-perl (6.10-1) ...
321 | Selecting previously unselected package libnet-smtp-ssl-perl.
322 | Preparing to unpack .../080-libnet-smtp-ssl-perl_1.04-1_all.deb ...
323 | Unpacking libnet-smtp-ssl-perl (1.04-1) ...
324 | Selecting previously unselected package libmailtools-perl.
325 | Preparing to unpack .../081-libmailtools-perl_2.21-1_all.deb ...
326 | Unpacking libmailtools-perl (2.21-1) ...
327 | Selecting previously unselected package libxml-parser-perl:amd64.
328 | Preparing to unpack .../082-libxml-parser-perl_2.46-3build1_amd64.deb ...
329 | Unpacking libxml-parser-perl:amd64 (2.46-3build1) ...
330 | Selecting previously unselected package libxml-twig-perl.
331 | Preparing to unpack .../083-libxml-twig-perl_1%3a3.52-1_all.deb ...
332 | Unpacking libxml-twig-perl (1:3.52-1) ...
333 | Selecting previously unselected package libnet-dbus-perl.
334 | Preparing to unpack .../084-libnet-dbus-perl_1.2.0-1build3_amd64.deb ...
335 | Unpacking libnet-dbus-perl (1.2.0-1build3) ...
336 | Selecting previously unselected package libtie-ixhash-perl.
337 | Preparing to unpack .../085-libtie-ixhash-perl_1.23-2.1_all.deb ...
338 | Unpacking libtie-ixhash-perl (1.23-2.1) ...
339 | Selecting previously unselected package libu2f-udev.
340 | Preparing to unpack .../086-libu2f-udev_1.1.10-3build2_all.deb ...
341 | Unpacking libu2f-udev (1.1.10-3build2) ...
342 | Selecting previously unselected package libvte-2.91-common.
343 | Preparing to unpack .../087-libvte-2.91-common_0.68.0-1_amd64.deb ...
344 | Unpacking libvte-2.91-common (0.68.0-1) ...
345 | Selecting previously unselected package libvte-2.91-0:amd64.
346 | Preparing to unpack .../088-libvte-2.91-0_0.68.0-1_amd64.deb ...
347 | Unpacking libvte-2.91-0:amd64 (0.68.0-1) ...
348 | Selecting previously unselected package libvted-3-0:amd64.
349 | Preparing to unpack .../089-libvted-3-0_3.10.0-1ubuntu1_amd64.deb ...
350 | Unpacking libvted-3-0:amd64 (3.10.0-1ubuntu1) ...
351 | Selecting previously unselected package libx11-protocol-perl.
352 | Preparing to unpack .../090-libx11-protocol-perl_0.56-7.1_all.deb ...
353 | Unpacking libx11-protocol-perl (0.56-7.1) ...
354 | Selecting previously unselected package libxcb-shape0:amd64.
355 | Preparing to unpack .../091-libxcb-shape0_1.14-3ubuntu3_amd64.deb ...
356 | Unpacking libxcb-shape0:amd64 (1.14-3ubuntu3) ...
357 | Selecting previously unselected package libxml-xpathengine-perl.
358 | Preparing to unpack .../092-libxml-xpathengine-perl_0.14-1_all.deb ...
359 | Unpacking libxml-xpathengine-perl (0.14-1) ...
360 | Selecting previously unselected package libxv1:amd64.
361 | Preparing to unpack .../093-libxv1_2%3a1.0.11-1build2_amd64.deb ...
362 | Unpacking libxv1:amd64 (2:1.0.11-1build2) ...
363 | Selecting previously unselected package libxxf86dga1:amd64.
364 | Preparing to unpack .../094-libxxf86dga1_2%3a1.1.5-0ubuntu3_amd64.deb ...
365 | Unpacking libxxf86dga1:amd64 (2:1.1.5-0ubuntu3) ...
366 | Selecting previously unselected package systemd-hwe-hwdb.
367 | Preparing to unpack .../095-systemd-hwe-hwdb_249.11.1_all.deb ...
368 | Unpacking systemd-hwe-hwdb (249.11.1) ...
369 | Selecting previously unselected package tilix-common.
370 | Preparing to unpack .../096-tilix-common_1.9.4-2build1_all.deb ...
371 | Unpacking tilix-common (1.9.4-2build1) ...
372 | Selecting previously unselected package tilix.
373 | Preparing to unpack .../097-tilix_1.9.4-2build1_amd64.deb ...
374 | Unpacking tilix (1.9.4-2build1) ...
375 | Selecting previously unselected package x11-utils.
376 | Preparing to unpack .../098-x11-utils_7.7+5build2_amd64.deb ...
377 | Unpacking x11-utils (7.7+5build2) ...
378 | Selecting previously unselected package x11-xserver-utils.
379 | Preparing to unpack .../099-x11-xserver-utils_7.7+9build1_amd64.deb ...
380 | Unpacking x11-xserver-utils (7.7+9build1) ...
381 | Selecting previously unselected package libauthen-sasl-perl.
382 | Preparing to unpack .../100-libauthen-sasl-perl_2.1600-1.1_all.deb ...
383 | Unpacking libauthen-sasl-perl (2.1600-1.1) ...
384 | Setting up libtext-iconv-perl (1.7-7build3) ...
385 | Setting up libwayland-server0:amd64 (1.20.0-1ubuntu0.1) ...
386 | Setting up gtk-update-icon-cache (3.24.33-1ubuntu2) ...
387 | Setting up session-migration (0.3.6) ...
388 | Created symlink /etc/systemd/user/graphical-session-pre.target.wants/session-migration.service → /usr/lib/systemd/user/session-migration.service.
389 | Setting up libtie-ixhash-perl (1.23-2.1) ...
390 | Setting up libxdamage1:amd64 (1:1.1.5-2build2) ...
391 | Setting up libfile-listing-perl (6.14-1) ...
392 | Setting up hicolor-icon-theme (0.17-2) ...
393 | Setting up libxi6:amd64 (2:1.8-1build1) ...
394 | Setting up tilix-common (1.9.4-2build1) ...
395 | Setting up libfont-afm-perl (1.20-3) ...
396 | Setting up libvte-2.91-common (0.68.0-1) ...
397 | Setting up libgbm1:amd64 (22.0.5-0ubuntu0.1) ...
398 | Setting up libclone-perl (0.45-1build3) ...
399 | Setting up libio-stringy-perl (2.111-3) ...
400 | Setting up libxtst6:amd64 (2:1.2.3-1build4) ...
401 | Setting up libhtml-tagset-perl (3.20-4) ...
402 | Setting up libauthen-sasl-perl (2.1600-1.1) ...
403 | Setting up libxcursor1:amd64 (1:1.2.0-2build4) ...
404 | Setting up liblwp-mediatypes-perl (6.04-1) ...
405 | Setting up libxcb-shape0:amd64 (1.14-3ubuntu3) ...
406 | Setting up libtry-tiny-perl (0.31-1) ...
407 | Setting up libxxf86dga1:amd64 (2:1.1.5-0ubuntu3) ...
408 | Setting up perl-openssl-defaults:amd64 (5build2) ...
409 | Setting up libencode-locale-perl (1.05-1.1) ...
410 | Setting up libatspi2.0-0:amd64 (2.44.0-3) ...
411 | Setting up libcolord2:amd64 (1.4.6-1) ...
412 | Setting up libdconf1:amd64 (0.40.0-3) ...
413 | Setting up libasound2-data (1.2.6.1-1ubuntu1) ...
414 | Setting up dbus-user-session (1.12.20-2ubuntu4) ...
415 | Setting up libllvm11:amd64 (1:11.1.0-6) ...
416 | Setting up libdata-dump-perl (1.25-1) ...
417 | Setting up libepoxy0:amd64 (1.5.10-1) ...
418 | Setting up libipc-system-simple-perl (1.30-1) ...
419 | Setting up libxml-xpathengine-perl (0.14-1) ...
420 | Setting up libavahi-common-data:amd64 (0.8-5ubuntu5) ...
421 | Setting up libxinerama1:amd64 (2:1.1.4-3) ...
422 | Setting up libxv1:amd64 (2:1.0.11-1build2) ...
423 | Setting up udev (249.11-0ubuntu3.6) ...
424 | invoke-rc.d: could not determine current runlevel
425 | invoke-rc.d: policy-rc.d denied execution of start.
426 | Setting up libio-html-perl (1.004-2) ...
427 | Setting up libxrandr2:amd64 (2:1.5.2-1build1) ...
428 | Setting up systemd-hwe-hwdb (249.11.1) ...
429 | Setting up libatk1.0-data (2.36.0-3build1) ...
430 | Setting up alsa-topology-conf (1.2.5.1-2) ...
431 | Setting up libasound2:amd64 (1.2.6.1-1ubuntu1) ...
432 | Setting up fonts-liberation (1:1.07.4-11) ...
433 | Setting up libatk1.0-0:amd64 (2.36.0-3build1) ...
434 | Setting up libwayland-egl1:amd64 (1.20.0-1ubuntu0.1) ...
435 | Setting up libxcomposite1:amd64 (1:0.4.5-1build2) ...
436 | Setting up xdg-utils (1.1.3-4.1ubuntu3~22.04.1) ...
437 | update-alternatives: using /usr/bin/xdg-open to provide /usr/bin/open (open) in auto mode
438 | update-alternatives: warning: skip creation of /usr/share/man/man1/open.1.gz because associated file /usr/share/man/man1/xdg-open.1.gz (of link group open) doesn't exist
439 | Setting up liburi-perl (5.10-1) ...
440 | Setting up libx11-protocol-perl (0.56-7.1) ...
441 | Setting up libhttp-message-perl (6.36-1) ...
442 | Setting up libxkbcommon0:amd64 (1.4.0-1) ...
443 | Setting up libwayland-client0:amd64 (1.20.0-1ubuntu0.1) ...
444 | Setting up libnet-ssleay-perl:amd64 (1.92-1build2) ...
445 | Setting up libhttp-negotiate-perl (6.01-1) ...
446 | Setting up libfile-basedir-perl (0.09-1) ...
447 | Setting up libphobos2-ldc-shared98:amd64 (1:1.28.0-1ubuntu1) ...
448 | Setting up alsa-ucm-conf (1.2.6.3-1ubuntu1) ...
449 | Setting up libhttp-cookies-perl (6.10-1) ...
450 | Setting up libu2f-udev (1.1.10-3build2) ...
451 | Setting up libavahi-common3:amd64 (0.8-5ubuntu5) ...
452 | Setting up libnet-http-perl (6.22-1) ...
453 | Setting up dconf-service (0.40.0-3) ...
454 | Setting up x11-xserver-utils (7.7+9build1) ...
455 | Setting up libatk-bridge2.0-0:amd64 (2.38.0-3) ...
456 | Setting up libfile-desktopentry-perl (0.22-2) ...
457 | Setting up libwww-robotrules-perl (6.02-1) ...
458 | Setting up libhttp-daemon-perl (6.13-1ubuntu0.1) ...
459 | Setting up libwayland-cursor0:amd64 (1.20.0-1ubuntu0.1) ...
460 | Setting up libhtml-parser-perl:amd64 (3.76-1build2) ...
461 | Setting up x11-utils (7.7+5build2) ...
462 | Setting up libavahi-client3:amd64 (0.8-5ubuntu5) ...
463 | Setting up libio-socket-ssl-perl (2.074-2) ...
464 | Setting up libhtml-form-perl (6.07-1) ...
465 | Setting up libfile-mimeinfo-perl (0.31-1) ...
466 | Setting up dconf-gsettings-backend:amd64 (0.40.0-3) ...
467 | Setting up libhtml-tree-perl (5.07-2) ...
468 | Setting up libhtml-format-perl (2.12-1.1) ...
469 | Setting up libnet-smtp-ssl-perl (1.04-1) ...
470 | Setting up libmailtools-perl (2.21-1) ...
471 | Setting up libcups2:amd64 (2.4.1op1-1ubuntu4.1) ...
472 | Setting up libgtk-3-common (3.24.33-1ubuntu2) ...
473 | Setting up gsettings-desktop-schemas (42.0-1ubuntu1) ...
474 | Setting up adwaita-icon-theme (41.0-1ubuntu1) ...
475 | update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode
476 | Setting up liblwp-protocol-https-perl (6.10-1) ...
477 | Setting up libwww-perl (6.61-1) ...
478 | Setting up humanity-icon-theme (0.6.16) ...
479 | Setting up libxml-parser-perl:amd64 (2.46-3build1) ...
480 | Setting up ubuntu-mono (20.10-0ubuntu2) ...
481 | Setting up libxml-twig-perl (1:3.52-1) ...
482 | Setting up libnet-dbus-perl (1.2.0-1build3) ...
483 | Processing triggers for fontconfig (2.13.1-4.2ubuntu5) ...
484 | Processing triggers for libglib2.0-0:amd64 (2.72.1-1) ...
485 | Setting up libgtk-3-0:amd64 (3.24.33-1ubuntu2) ...
486 | Processing triggers for libc-bin (2.35-0ubuntu3.1) ...
487 | Setting up libgtk-3-bin (3.24.33-1ubuntu2) ...
488 | Setting up libvte-2.91-0:amd64 (0.68.0-1) ...
489 | Setting up libvted-3-0:amd64 (3.10.0-1ubuntu1) ...
490 | Setting up at-spi2-core (2.44.0-3) ...
491 | Setting up libgtkd-3-0:amd64 (3.10.0-1ubuntu1) ...
492 | Setting up tilix (1.9.4-2build1) ...
493 | update-alternatives: using /usr/bin/tilix.wrapper to provide /usr/bin/x-terminal-emulator (x-terminal-emulator) in auto mode
494 | update-alternatives: warning: skip creation of /usr/share/man/man1/x-terminal-emulator.1.gz because associated file /usr/share/man/man1/tilix.1.gz (of link group x-terminal-emulator) doesn't exist
495 | Setting up google-chrome-stable (106.0.5249.119-1) ...
496 | update-alternatives: using /usr/bin/google-chrome-stable to provide /usr/bin/x-www-browser (x-www-browser) in auto mode
497 | update-alternatives: using /usr/bin/google-chrome-stable to provide /usr/bin/gnome-www-browser (gnome-www-browser) in auto mode
498 | update-alternatives: using /usr/bin/google-chrome-stable to provide /usr/bin/google-chrome (google-chrome) in auto mode
499 | Processing triggers for libc-bin (2.35-0ubuntu3.1) ...
500 |  
501 | [Container] 2022/10/24 17:35:32 Running command google-chrome --version
502 | Google Chrome 106.0.5249.119
503 |  
504 | [Container] 2022/10/24 17:35:32 Running command CHROME_VERSION=`google-chrome --version \| awk -F '[ .]' '{print $3"."$4"."$5}'`
505 |  
506 | [Container] 2022/10/24 17:35:32 Running command CHROME_DRIVER_VERSION=`wget -qO- chromedriver.storage.googleapis.com/LATEST_RELEASE_$CHROME_VERSION`
507 |  
508 | [Container] 2022/10/24 17:35:32 Running command wget -qO /tmp/chromedriver_linux64.zip https://chromedriver.storage.googleapis.com/$CHROME_DRIVER_VERSION/chromedriver_linux64.zip
509 |  
510 | [Container] 2022/10/24 17:35:32 Running command unzip -q /tmp/chromedriver_linux64.zip -d /opt
511 |  
512 | [Container] 2022/10/24 17:35:32 Running command rm /tmp/chromedriver_linux64.zip
513 |  
514 | [Container] 2022/10/24 17:35:32 Running command mv /opt/chromedriver /opt/chromedriver-$CHROME_DRIVER_VERSION
515 |  
516 | [Container] 2022/10/24 17:35:32 Running command chmod 755 /opt/chromedriver-$CHROME_DRIVER_VERSION
517 |  
518 | [Container] 2022/10/24 17:35:32 Running command ln -s /opt/chromedriver-$CHROME_DRIVER_VERSION /usr/bin/chromedriver
519 |  
520 | [Container] 2022/10/24 17:35:32 Running command chromedriver --version
521 | ChromeDriver 106.0.5249.61 (511755355844955cd3e264779baf0dd38212a4d0-refs/branch-heads/5249@{#569})




[Container] 2022/10/24 17:35:07 Running command echo Installing Chrome
37 | Installing Chrome
38 |  
39 | [Container] 2022/10/24 17:35:07 Running command wget -q -O - https://dl.google.com/linux/linux_signing_key.pub \| apt-key add -
40 | Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)).
41 | OK
42 |  
43 | [Container] 2022/10/24 17:35:07 Running command echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" \| tee /etc/apt/sources.list.d/google.list
44 | deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main
45 |  
46 | [Container] 2022/10/24 17:35:07 Running command apt-get -qq update
47 | W: http://dl.google.com/linux/chrome/deb/dists/stable/InRelease: Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see the DEPRECATION section in apt-key(8) for details.
48 | W: https://apt.corretto.aws/dists/stable/InRelease: Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see the DEPRECATION section in apt-key(8) for details.
49 | W: https://dl.yarnpkg.com/debian/dists/stable/InRelease: Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see the DEPRECATION section in apt-key(8) for details.
50 |  
51 | [Container] 2022/10/24 17:35:11 Running command apt-get -qq install -y google-chrome-stable
52 | debconf: unable to initialize frontend: Dialog
53 | debconf: (TERM is not set, so the dialog frontend is not usable.)
54 | debconf: falling back to frontend: Readline
55 | debconf: unable to initialize frontend: Readline
56 | debconf: (This frontend requires a controlling tty.)
57 | debconf: falling back to frontend: Teletype
58 | dpkg-preconfigure: unable to re-open stdin:
59 | Selecting previously unselected package fonts-liberation.
60 | (Reading database ...
61 | (Reading database ... 5%
62 | (Reading database ... 10%
63 | (Reading database ... 15%
64 | (Reading database ... 20%
65 | (Reading database ... 25%
66 | (Reading database ... 30%
67 | (Reading database ... 35%
68 | (Reading database ... 40%
69 | (Reading database ... 45%
70 | (Reading database ... 50%
71 | (Reading database ... 55%
72 | (Reading database ... 60%
73 | (Reading database ... 65%
74 | (Reading database ... 70%
75 | (Reading database ... 75%
76 | (Reading database ... 80%
77 | (Reading database ... 85%
78 | (Reading database ... 90%
79 | (Reading database ... 95%
80 | (Reading database ... 100%
81 | (Reading database ... 33867 files and directories currently installed.)
82 | Preparing to unpack .../000-fonts-liberation_1%3a1.07.4-11_all.deb ...
83 | Unpacking fonts-liberation (1:1.07.4-11) ...
84 | Selecting previously unselected package libasound2-data.
85 | Preparing to unpack .../001-libasound2-data_1.2.6.1-1ubuntu1_all.deb ...
86 | Unpacking libasound2-data (1.2.6.1-1ubuntu1) ...
87 | Selecting previously unselected package libasound2:amd64.
88 | Preparing to unpack .../002-libasound2_1.2.6.1-1ubuntu1_amd64.deb ...
89 | Unpacking libasound2:amd64 (1.2.6.1-1ubuntu1) ...
90 | Selecting previously unselected package libatk1.0-data.
91 | Preparing to unpack .../003-libatk1.0-data_2.36.0-3build1_all.deb ...
92 | Unpacking libatk1.0-data (2.36.0-3build1) ...
93 | Selecting previously unselected package libatk1.0-0:amd64.
94 | Preparing to unpack .../004-libatk1.0-0_2.36.0-3build1_amd64.deb ...
95 | Unpacking libatk1.0-0:amd64 (2.36.0-3build1) ...
96 | Selecting previously unselected package libxi6:amd64.
97 | Preparing to unpack .../005-libxi6_2%3a1.8-1build1_amd64.deb ...
98 | Unpacking libxi6:amd64 (2:1.8-1build1) ...
99 | Selecting previously unselected package libatspi2.0-0:amd64.
100 | Preparing to unpack .../006-libatspi2.0-0_2.44.0-3_amd64.deb ...
101 | Unpacking libatspi2.0-0:amd64 (2.44.0-3) ...
102 | Selecting previously unselected package libatk-bridge2.0-0:amd64.
103 | Preparing to unpack .../007-libatk-bridge2.0-0_2.38.0-3_amd64.deb ...
104 | Unpacking libatk-bridge2.0-0:amd64 (2.38.0-3) ...
105 | Selecting previously unselected package libavahi-common-data:amd64.
106 | Preparing to unpack .../008-libavahi-common-data_0.8-5ubuntu5_amd64.deb ...
107 | Unpacking libavahi-common-data:amd64 (0.8-5ubuntu5) ...
108 | Selecting previously unselected package libavahi-common3:amd64.
109 | Preparing to unpack .../009-libavahi-common3_0.8-5ubuntu5_amd64.deb ...
110 | Unpacking libavahi-common3:amd64 (0.8-5ubuntu5) ...
111 | Selecting previously unselected package libavahi-client3:amd64.
112 | Preparing to unpack .../010-libavahi-client3_0.8-5ubuntu5_amd64.deb ...
113 | Unpacking libavahi-client3:amd64 (0.8-5ubuntu5) ...
114 | Selecting previously unselected package libcups2:amd64.
115 | Preparing to unpack .../011-libcups2_2.4.1op1-1ubuntu4.1_amd64.deb ...
116 | Unpacking libcups2:amd64 (2.4.1op1-1ubuntu4.1) ...
117 | Selecting previously unselected package libwayland-server0:amd64.
118 | Preparing to unpack .../012-libwayland-server0_1.20.0-1ubuntu0.1_amd64.deb ...
119 | Unpacking libwayland-server0:amd64 (1.20.0-1ubuntu0.1) ...
120 | Selecting previously unselected package libgbm1:amd64.
121 | Preparing to unpack .../013-libgbm1_22.0.5-0ubuntu0.1_amd64.deb ...
122 | Unpacking libgbm1:amd64 (22.0.5-0ubuntu0.1) ...
123 | Selecting previously unselected package hicolor-icon-theme.
124 | Preparing to unpack .../014-hicolor-icon-theme_0.17-2_all.deb ...
125 | Unpacking hicolor-icon-theme (0.17-2) ...
126 | Selecting previously unselected package gtk-update-icon-cache.
127 | Preparing to unpack .../015-gtk-update-icon-cache_3.24.33-1ubuntu2_amd64.deb ...
128 | Unpacking gtk-update-icon-cache (3.24.33-1ubuntu2) ...
129 | Selecting previously unselected package humanity-icon-theme.
130 | Preparing to unpack .../016-humanity-icon-theme_0.6.16_all.deb ...
131 | Unpacking humanity-icon-theme (0.6.16) ...
132 | Selecting previously unselected package ubuntu-mono.
133 | Preparing to unpack .../017-ubuntu-mono_20.10-0ubuntu2_all.deb ...
134 | Unpacking ubuntu-mono (20.10-0ubuntu2) ...
135 | Selecting previously unselected package adwaita-icon-theme.
136 | Preparing to unpack .../018-adwaita-icon-theme_41.0-1ubuntu1_all.deb ...
137 | Unpacking adwaita-icon-theme (41.0-1ubuntu1) ...
138 | Selecting previously unselected package libcolord2:amd64.
139 | Preparing to unpack .../019-libcolord2_1.4.6-1_amd64.deb ...
140 | Unpacking libcolord2:amd64 (1.4.6-1) ...
141 | Selecting previously unselected package libepoxy0:amd64.
142 | Preparing to unpack .../020-libepoxy0_1.5.10-1_amd64.deb ...
143 | Unpacking libepoxy0:amd64 (1.5.10-1) ...
144 | Selecting previously unselected package libwayland-client0:amd64.
145 | Preparing to unpack .../021-libwayland-client0_1.20.0-1ubuntu0.1_amd64.deb ...
146 | Unpacking libwayland-client0:amd64 (1.20.0-1ubuntu0.1) ...
147 | Selecting previously unselected package libwayland-cursor0:amd64.
148 | Preparing to unpack .../022-libwayland-cursor0_1.20.0-1ubuntu0.1_amd64.deb ...
149 | Unpacking libwayland-cursor0:amd64 (1.20.0-1ubuntu0.1) ...
150 | Selecting previously unselected package libwayland-egl1:amd64.
151 | Preparing to unpack .../023-libwayland-egl1_1.20.0-1ubuntu0.1_amd64.deb ...
152 | Unpacking libwayland-egl1:amd64 (1.20.0-1ubuntu0.1) ...
153 | Selecting previously unselected package libxcomposite1:amd64.
154 | Preparing to unpack .../024-libxcomposite1_1%3a0.4.5-1build2_amd64.deb ...
155 | Unpacking libxcomposite1:amd64 (1:0.4.5-1build2) ...
156 | Selecting previously unselected package libxcursor1:amd64.
157 | Preparing to unpack .../025-libxcursor1_1%3a1.2.0-2build4_amd64.deb ...
158 | Unpacking libxcursor1:amd64 (1:1.2.0-2build4) ...
159 | Selecting previously unselected package libxdamage1:amd64.
160 | Preparing to unpack .../026-libxdamage1_1%3a1.1.5-2build2_amd64.deb ...
161 | Unpacking libxdamage1:amd64 (1:1.1.5-2build2) ...
162 | Selecting previously unselected package libxinerama1:amd64.
163 | Preparing to unpack .../027-libxinerama1_2%3a1.1.4-3_amd64.deb ...
164 | Unpacking libxinerama1:amd64 (2:1.1.4-3) ...
165 | Selecting previously unselected package libxkbcommon0:amd64.
166 | Preparing to unpack .../028-libxkbcommon0_1.4.0-1_amd64.deb ...
167 | Unpacking libxkbcommon0:amd64 (1.4.0-1) ...
168 | Selecting previously unselected package libxrandr2:amd64.
169 | Preparing to unpack .../029-libxrandr2_2%3a1.5.2-1build1_amd64.deb ...
170 | Unpacking libxrandr2:amd64 (2:1.5.2-1build1) ...
171 | Selecting previously unselected package dbus-user-session.
172 | Preparing to unpack .../030-dbus-user-session_1.12.20-2ubuntu4_amd64.deb ...
173 | Unpacking dbus-user-session (1.12.20-2ubuntu4) ...
174 | Selecting previously unselected package libdconf1:amd64.
175 | Preparing to unpack .../031-libdconf1_0.40.0-3_amd64.deb ...
176 | Unpacking libdconf1:amd64 (0.40.0-3) ...
177 | Selecting previously unselected package dconf-service.
178 | Preparing to unpack .../032-dconf-service_0.40.0-3_amd64.deb ...
179 | Unpacking dconf-service (0.40.0-3) ...
180 | Selecting previously unselected package dconf-gsettings-backend:amd64.
181 | Preparing to unpack .../033-dconf-gsettings-backend_0.40.0-3_amd64.deb ...
182 | Unpacking dconf-gsettings-backend:amd64 (0.40.0-3) ...
183 | Selecting previously unselected package libgtk-3-common.
184 | Preparing to unpack .../034-libgtk-3-common_3.24.33-1ubuntu2_all.deb ...
185 | Unpacking libgtk-3-common (3.24.33-1ubuntu2) ...
186 | Selecting previously unselected package libgtk-3-0:amd64.
187 | Preparing to unpack .../035-libgtk-3-0_3.24.33-1ubuntu2_amd64.deb ...
188 | Unpacking libgtk-3-0:amd64 (3.24.33-1ubuntu2) ...
189 | Selecting previously unselected package xdg-utils.
190 | Preparing to unpack .../036-xdg-utils_1.1.3-4.1ubuntu3~22.04.1_all.deb ...
191 | Unpacking xdg-utils (1.1.3-4.1ubuntu3~22.04.1) ...
192 | Selecting previously unselected package google-chrome-stable.
193 | Preparing to unpack .../037-google-chrome-stable_106.0.5249.119-1_amd64.deb ...
194 | Unpacking google-chrome-stable (106.0.5249.119-1) ...
195 | Selecting previously unselected package libtext-iconv-perl.
196 | Preparing to unpack .../038-libtext-iconv-perl_1.7-7build3_amd64.deb ...
197 | Unpacking libtext-iconv-perl (1.7-7build3) ...
198 | Selecting previously unselected package udev.
199 | Preparing to unpack .../039-udev_249.11-0ubuntu3.6_amd64.deb ...
200 | Unpacking udev (249.11-0ubuntu3.6) ...
201 | Selecting previously unselected package alsa-topology-conf.
202 | Preparing to unpack .../040-alsa-topology-conf_1.2.5.1-2_all.deb ...
203 | Unpacking alsa-topology-conf (1.2.5.1-2) ...
204 | Selecting previously unselected package alsa-ucm-conf.
205 | Preparing to unpack .../041-alsa-ucm-conf_1.2.6.3-1ubuntu1_all.deb ...
206 | Unpacking alsa-ucm-conf (1.2.6.3-1ubuntu1) ...
207 | Selecting previously unselected package libxtst6:amd64.
208 | Preparing to unpack .../042-libxtst6_2%3a1.2.3-1build4_amd64.deb ...
209 | Unpacking libxtst6:amd64 (2:1.2.3-1build4) ...
210 | Selecting previously unselected package session-migration.
211 | Preparing to unpack .../043-session-migration_0.3.6_amd64.deb ...
212 | Unpacking session-migration (0.3.6) ...
213 | Selecting previously unselected package gsettings-desktop-schemas.
214 | Preparing to unpack .../044-gsettings-desktop-schemas_42.0-1ubuntu1_all.deb ...
215 | Unpacking gsettings-desktop-schemas (42.0-1ubuntu1) ...
216 | Selecting previously unselected package at-spi2-core.
217 | Preparing to unpack .../045-at-spi2-core_2.44.0-3_amd64.deb ...
218 | Unpacking at-spi2-core (2.44.0-3) ...
219 | Selecting previously unselected package libclone-perl.
220 | Preparing to unpack .../046-libclone-perl_0.45-1build3_amd64.deb ...
221 | Unpacking libclone-perl (0.45-1build3) ...
222 | Selecting previously unselected package libdata-dump-perl.
223 | Preparing to unpack .../047-libdata-dump-perl_1.25-1_all.deb ...
224 | Unpacking libdata-dump-perl (1.25-1) ...
225 | Selecting previously unselected package libencode-locale-perl.
226 | Preparing to unpack .../048-libencode-locale-perl_1.05-1.1_all.deb ...
227 | Unpacking libencode-locale-perl (1.05-1.1) ...
228 | Selecting previously unselected package libipc-system-simple-perl.
229 | Preparing to unpack .../049-libipc-system-simple-perl_1.30-1_all.deb ...
230 | Unpacking libipc-system-simple-perl (1.30-1) ...
231 | Selecting previously unselected package libfile-basedir-perl.
232 | Preparing to unpack .../050-libfile-basedir-perl_0.09-1_all.deb ...
233 | Unpacking libfile-basedir-perl (0.09-1) ...
234 | Selecting previously unselected package liburi-perl.
235 | Preparing to unpack .../051-liburi-perl_5.10-1_all.deb ...
236 | Unpacking liburi-perl (5.10-1) ...
237 | Selecting previously unselected package libfile-desktopentry-perl.
238 | Preparing to unpack .../052-libfile-desktopentry-perl_0.22-2_all.deb ...
239 | Unpacking libfile-desktopentry-perl (0.22-2) ...
240 | Selecting previously unselected package libfile-listing-perl.
241 | Preparing to unpack .../053-libfile-listing-perl_6.14-1_all.deb ...
242 | Unpacking libfile-listing-perl (6.14-1) ...
243 | Selecting previously unselected package libfile-mimeinfo-perl.
244 | Preparing to unpack .../054-libfile-mimeinfo-perl_0.31-1_all.deb ...
245 | Unpacking libfile-mimeinfo-perl (0.31-1) ...
246 | Selecting previously unselected package libfont-afm-perl.
247 | Preparing to unpack .../055-libfont-afm-perl_1.20-3_all.deb ...
248 | Unpacking libfont-afm-perl (1.20-3) ...
249 | Selecting previously unselected package libgtk-3-bin.
250 | Preparing to unpack .../056-libgtk-3-bin_3.24.33-1ubuntu2_amd64.deb ...
251 | Unpacking libgtk-3-bin (3.24.33-1ubuntu2) ...
252 | Selecting previously unselected package libllvm11:amd64.
253 | Preparing to unpack .../057-libllvm11_1%3a11.1.0-6_amd64.deb ...
254 | Unpacking libllvm11:amd64 (1:11.1.0-6) ...
255 | Selecting previously unselected package libphobos2-ldc-shared98:amd64.
256 | Preparing to unpack .../058-libphobos2-ldc-shared98_1%3a1.28.0-1ubuntu1_amd64.deb ...
257 | Unpacking libphobos2-ldc-shared98:amd64 (1:1.28.0-1ubuntu1) ...
258 | Selecting previously unselected package libgtkd-3-0:amd64.
259 | Preparing to unpack .../059-libgtkd-3-0_3.10.0-1ubuntu1_amd64.deb ...
260 | Unpacking libgtkd-3-0:amd64 (3.10.0-1ubuntu1) ...
261 | Selecting previously unselected package libhtml-tagset-perl.
262 | Preparing to unpack .../060-libhtml-tagset-perl_3.20-4_all.deb ...
263 | Unpacking libhtml-tagset-perl (3.20-4) ...
264 | Selecting previously unselected package libhtml-parser-perl:amd64.
265 | Preparing to unpack .../061-libhtml-parser-perl_3.76-1build2_amd64.deb ...
266 | Unpacking libhtml-parser-perl:amd64 (3.76-1build2) ...
267 | Selecting previously unselected package libio-html-perl.
268 | Preparing to unpack .../062-libio-html-perl_1.004-2_all.deb ...
269 | Unpacking libio-html-perl (1.004-2) ...
270 | Selecting previously unselected package liblwp-mediatypes-perl.
271 | Preparing to unpack .../063-liblwp-mediatypes-perl_6.04-1_all.deb ...
272 | Unpacking liblwp-mediatypes-perl (6.04-1) ...
273 | Selecting previously unselected package libhttp-message-perl.
274 | Preparing to unpack .../064-libhttp-message-perl_6.36-1_all.deb ...
275 | Unpacking libhttp-message-perl (6.36-1) ...
276 | Selecting previously unselected package libhtml-form-perl.
277 | Preparing to unpack .../065-libhtml-form-perl_6.07-1_all.deb ...
278 | Unpacking libhtml-form-perl (6.07-1) ...
279 | Selecting previously unselected package libhtml-tree-perl.
280 | Preparing to unpack .../066-libhtml-tree-perl_5.07-2_all.deb ...
281 | Unpacking libhtml-tree-perl (5.07-2) ...
282 | Selecting previously unselected package libhtml-format-perl.
283 | Preparing to unpack .../067-libhtml-format-perl_2.12-1.1_all.deb ...
284 | Unpacking libhtml-format-perl (2.12-1.1) ...
285 | Selecting previously unselected package libhttp-cookies-perl.
286 | Preparing to unpack .../068-libhttp-cookies-perl_6.10-1_all.deb ...
287 | Unpacking libhttp-cookies-perl (6.10-1) ...
288 | Selecting previously unselected package libhttp-daemon-perl.
289 | Preparing to unpack .../069-libhttp-daemon-perl_6.13-1ubuntu0.1_all.deb ...
290 | Unpacking libhttp-daemon-perl (6.13-1ubuntu0.1) ...
291 | Selecting previously unselected package libhttp-negotiate-perl.
292 | Preparing to unpack .../070-libhttp-negotiate-perl_6.01-1_all.deb ...
293 | Unpacking libhttp-negotiate-perl (6.01-1) ...
294 | Selecting previously unselected package perl-openssl-defaults:amd64.
295 | Preparing to unpack .../071-perl-openssl-defaults_5build2_amd64.deb ...
296 | Unpacking perl-openssl-defaults:amd64 (5build2) ...
297 | Selecting previously unselected package libnet-ssleay-perl:amd64.
298 | Preparing to unpack .../072-libnet-ssleay-perl_1.92-1build2_amd64.deb ...
299 | Unpacking libnet-ssleay-perl:amd64 (1.92-1build2) ...
300 | Selecting previously unselected package libio-socket-ssl-perl.
301 | Preparing to unpack .../073-libio-socket-ssl-perl_2.074-2_all.deb ...
302 | Unpacking libio-socket-ssl-perl (2.074-2) ...
303 | Selecting previously unselected package libio-stringy-perl.
304 | Preparing to unpack .../074-libio-stringy-perl_2.111-3_all.deb ...
305 | Unpacking libio-stringy-perl (2.111-3) ...
306 | Selecting previously unselected package libnet-http-perl.
307 | Preparing to unpack .../075-libnet-http-perl_6.22-1_all.deb ...
308 | Unpacking libnet-http-perl (6.22-1) ...
309 | Selecting previously unselected package libtry-tiny-perl.
310 | Preparing to unpack .../076-libtry-tiny-perl_0.31-1_all.deb ...
311 | Unpacking libtry-tiny-perl (0.31-1) ...
312 | Selecting previously unselected package libwww-robotrules-perl.
313 | Preparing to unpack .../077-libwww-robotrules-perl_6.02-1_all.deb ...
314 | Unpacking libwww-robotrules-perl (6.02-1) ...
315 | Selecting previously unselected package libwww-perl.
316 | Preparing to unpack .../078-libwww-perl_6.61-1_all.deb ...
317 | Unpacking libwww-perl (6.61-1) ...
318 | Selecting previously unselected package liblwp-protocol-https-perl.
319 | Preparing to unpack .../079-liblwp-protocol-https-perl_6.10-1_all.deb ...
320 | Unpacking liblwp-protocol-https-perl (6.10-1) ...
321 | Selecting previously unselected package libnet-smtp-ssl-perl.
322 | Preparing to unpack .../080-libnet-smtp-ssl-perl_1.04-1_all.deb ...
323 | Unpacking libnet-smtp-ssl-perl (1.04-1) ...
324 | Selecting previously unselected package libmailtools-perl.
325 | Preparing to unpack .../081-libmailtools-perl_2.21-1_all.deb ...
326 | Unpacking libmailtools-perl (2.21-1) ...
327 | Selecting previously unselected package libxml-parser-perl:amd64.
328 | Preparing to unpack .../082-libxml-parser-perl_2.46-3build1_amd64.deb ...
329 | Unpacking libxml-parser-perl:amd64 (2.46-3build1) ...
330 | Selecting previously unselected package libxml-twig-perl.
331 | Preparing to unpack .../083-libxml-twig-perl_1%3a3.52-1_all.deb ...
332 | Unpacking libxml-twig-perl (1:3.52-1) ...
333 | Selecting previously unselected package libnet-dbus-perl.
334 | Preparing to unpack .../084-libnet-dbus-perl_1.2.0-1build3_amd64.deb ...
335 | Unpacking libnet-dbus-perl (1.2.0-1build3) ...
336 | Selecting previously unselected package libtie-ixhash-perl.
337 | Preparing to unpack .../085-libtie-ixhash-perl_1.23-2.1_all.deb ...
338 | Unpacking libtie-ixhash-perl (1.23-2.1) ...
339 | Selecting previously unselected package libu2f-udev.
340 | Preparing to unpack .../086-libu2f-udev_1.1.10-3build2_all.deb ...
341 | Unpacking libu2f-udev (1.1.10-3build2) ...
342 | Selecting previously unselected package libvte-2.91-common.
343 | Preparing to unpack .../087-libvte-2.91-common_0.68.0-1_amd64.deb ...
344 | Unpacking libvte-2.91-common (0.68.0-1) ...
345 | Selecting previously unselected package libvte-2.91-0:amd64.
346 | Preparing to unpack .../088-libvte-2.91-0_0.68.0-1_amd64.deb ...
347 | Unpacking libvte-2.91-0:amd64 (0.68.0-1) ...
348 | Selecting previously unselected package libvted-3-0:amd64.
349 | Preparing to unpack .../089-libvted-3-0_3.10.0-1ubuntu1_amd64.deb ...
350 | Unpacking libvted-3-0:amd64 (3.10.0-1ubuntu1) ...
351 | Selecting previously unselected package libx11-protocol-perl.
352 | Preparing to unpack .../090-libx11-protocol-perl_0.56-7.1_all.deb ...
353 | Unpacking libx11-protocol-perl (0.56-7.1) ...
354 | Selecting previously unselected package libxcb-shape0:amd64.
355 | Preparing to unpack .../091-libxcb-shape0_1.14-3ubuntu3_amd64.deb ...
356 | Unpacking libxcb-shape0:amd64 (1.14-3ubuntu3) ...
357 | Selecting previously unselected package libxml-xpathengine-perl.
358 | Preparing to unpack .../092-libxml-xpathengine-perl_0.14-1_all.deb ...
359 | Unpacking libxml-xpathengine-perl (0.14-1) ...
360 | Selecting previously unselected package libxv1:amd64.
361 | Preparing to unpack .../093-libxv1_2%3a1.0.11-1build2_amd64.deb ...
362 | Unpacking libxv1:amd64 (2:1.0.11-1build2) ...
363 | Selecting previously unselected package libxxf86dga1:amd64.
364 | Preparing to unpack .../094-libxxf86dga1_2%3a1.1.5-0ubuntu3_amd64.deb ...
365 | Unpacking libxxf86dga1:amd64 (2:1.1.5-0ubuntu3) ...
366 | Selecting previously unselected package systemd-hwe-hwdb.
367 | Preparing to unpack .../095-systemd-hwe-hwdb_249.11.1_all.deb ...
368 | Unpacking systemd-hwe-hwdb (249.11.1) ...
369 | Selecting previously unselected package tilix-common.
370 | Preparing to unpack .../096-tilix-common_1.9.4-2build1_all.deb ...
371 | Unpacking tilix-common (1.9.4-2build1) ...
372 | Selecting previously unselected package tilix.
373 | Preparing to unpack .../097-tilix_1.9.4-2build1_amd64.deb ...
374 | Unpacking tilix (1.9.4-2build1) ...
375 | Selecting previously unselected package x11-utils.
376 | Preparing to unpack .../098-x11-utils_7.7+5build2_amd64.deb ...
377 | Unpacking x11-utils (7.7+5build2) ...
378 | Selecting previously unselected package x11-xserver-utils.
379 | Preparing to unpack .../099-x11-xserver-utils_7.7+9build1_amd64.deb ...
380 | Unpacking x11-xserver-utils (7.7+9build1) ...
381 | Selecting previously unselected package libauthen-sasl-perl.
382 | Preparing to unpack .../100-libauthen-sasl-perl_2.1600-1.1_all.deb ...
383 | Unpacking libauthen-sasl-perl (2.1600-1.1) ...
384 | Setting up libtext-iconv-perl (1.7-7build3) ...
385 | Setting up libwayland-server0:amd64 (1.20.0-1ubuntu0.1) ...
386 | Setting up gtk-update-icon-cache (3.24.33-1ubuntu2) ...
387 | Setting up session-migration (0.3.6) ...
388 | Created symlink /etc/systemd/user/graphical-session-pre.target.wants/session-migration.service → /usr/lib/systemd/user/session-migration.service.
389 | Setting up libtie-ixhash-perl (1.23-2.1) ...
390 | Setting up libxdamage1:amd64 (1:1.1.5-2build2) ...
391 | Setting up libfile-listing-perl (6.14-1) ...
392 | Setting up hicolor-icon-theme (0.17-2) ...
393 | Setting up libxi6:amd64 (2:1.8-1build1) ...
394 | Setting up tilix-common (1.9.4-2build1) ...
395 | Setting up libfont-afm-perl (1.20-3) ...
396 | Setting up libvte-2.91-common (0.68.0-1) ...
397 | Setting up libgbm1:amd64 (22.0.5-0ubuntu0.1) ...
398 | Setting up libclone-perl (0.45-1build3) ...
399 | Setting up libio-stringy-perl (2.111-3) ...
400 | Setting up libxtst6:amd64 (2:1.2.3-1build4) ...
401 | Setting up libhtml-tagset-perl (3.20-4) ...
402 | Setting up libauthen-sasl-perl (2.1600-1.1) ...
403 | Setting up libxcursor1:amd64 (1:1.2.0-2build4) ...
404 | Setting up liblwp-mediatypes-perl (6.04-1) ...
405 | Setting up libxcb-shape0:amd64 (1.14-3ubuntu3) ...
406 | Setting up libtry-tiny-perl (0.31-1) ...
407 | Setting up libxxf86dga1:amd64 (2:1.1.5-0ubuntu3) ...
408 | Setting up perl-openssl-defaults:amd64 (5build2) ...
409 | Setting up libencode-locale-perl (1.05-1.1) ...
410 | Setting up libatspi2.0-0:amd64 (2.44.0-3) ...
411 | Setting up libcolord2:amd64 (1.4.6-1) ...
412 | Setting up libdconf1:amd64 (0.40.0-3) ...
413 | Setting up libasound2-data (1.2.6.1-1ubuntu1) ...
414 | Setting up dbus-user-session (1.12.20-2ubuntu4) ...
415 | Setting up libllvm11:amd64 (1:11.1.0-6) ...
416 | Setting up libdata-dump-perl (1.25-1) ...
417 | Setting up libepoxy0:amd64 (1.5.10-1) ...
418 | Setting up libipc-system-simple-perl (1.30-1) ...
419 | Setting up libxml-xpathengine-perl (0.14-1) ...
420 | Setting up libavahi-common-data:amd64 (0.8-5ubuntu5) ...
421 | Setting up libxinerama1:amd64 (2:1.1.4-3) ...
422 | Setting up libxv1:amd64 (2:1.0.11-1build2) ...
423 | Setting up udev (249.11-0ubuntu3.6) ...
424 | invoke-rc.d: could not determine current runlevel
425 | invoke-rc.d: policy-rc.d denied execution of start.
426 | Setting up libio-html-perl (1.004-2) ...
427 | Setting up libxrandr2:amd64 (2:1.5.2-1build1) ...
428 | Setting up systemd-hwe-hwdb (249.11.1) ...
429 | Setting up libatk1.0-data (2.36.0-3build1) ...
430 | Setting up alsa-topology-conf (1.2.5.1-2) ...
431 | Setting up libasound2:amd64 (1.2.6.1-1ubuntu1) ...
432 | Setting up fonts-liberation (1:1.07.4-11) ...
433 | Setting up libatk1.0-0:amd64 (2.36.0-3build1) ...
434 | Setting up libwayland-egl1:amd64 (1.20.0-1ubuntu0.1) ...
435 | Setting up libxcomposite1:amd64 (1:0.4.5-1build2) ...
436 | Setting up xdg-utils (1.1.3-4.1ubuntu3~22.04.1) ...
437 | update-alternatives: using /usr/bin/xdg-open to provide /usr/bin/open (open) in auto mode
438 | update-alternatives: warning: skip creation of /usr/share/man/man1/open.1.gz because associated file /usr/share/man/man1/xdg-open.1.gz (of link group open) doesn't exist
439 | Setting up liburi-perl (5.10-1) ...
440 | Setting up libx11-protocol-perl (0.56-7.1) ...
441 | Setting up libhttp-message-perl (6.36-1) ...
442 | Setting up libxkbcommon0:amd64 (1.4.0-1) ...
443 | Setting up libwayland-client0:amd64 (1.20.0-1ubuntu0.1) ...
444 | Setting up libnet-ssleay-perl:amd64 (1.92-1build2) ...
445 | Setting up libhttp-negotiate-perl (6.01-1) ...
446 | Setting up libfile-basedir-perl (0.09-1) ...
447 | Setting up libphobos2-ldc-shared98:amd64 (1:1.28.0-1ubuntu1) ...
448 | Setting up alsa-ucm-conf (1.2.6.3-1ubuntu1) ...
449 | Setting up libhttp-cookies-perl (6.10-1) ...
450 | Setting up libu2f-udev (1.1.10-3build2) ...
451 | Setting up libavahi-common3:amd64 (0.8-5ubuntu5) ...
452 | Setting up libnet-http-perl (6.22-1) ...
453 | Setting up dconf-service (0.40.0-3) ...
454 | Setting up x11-xserver-utils (7.7+9build1) ...
455 | Setting up libatk-bridge2.0-0:amd64 (2.38.0-3) ...
456 | Setting up libfile-desktopentry-perl (0.22-2) ...
457 | Setting up libwww-robotrules-perl (6.02-1) ...
458 | Setting up libhttp-daemon-perl (6.13-1ubuntu0.1) ...
459 | Setting up libwayland-cursor0:amd64 (1.20.0-1ubuntu0.1) ...
460 | Setting up libhtml-parser-perl:amd64 (3.76-1build2) ...
461 | Setting up x11-utils (7.7+5build2) ...
462 | Setting up libavahi-client3:amd64 (0.8-5ubuntu5) ...
463 | Setting up libio-socket-ssl-perl (2.074-2) ...
464 | Setting up libhtml-form-perl (6.07-1) ...
465 | Setting up libfile-mimeinfo-perl (0.31-1) ...
466 | Setting up dconf-gsettings-backend:amd64 (0.40.0-3) ...
467 | Setting up libhtml-tree-perl (5.07-2) ...
468 | Setting up libhtml-format-perl (2.12-1.1) ...
469 | Setting up libnet-smtp-ssl-perl (1.04-1) ...
470 | Setting up libmailtools-perl (2.21-1) ...
471 | Setting up libcups2:amd64 (2.4.1op1-1ubuntu4.1) ...
472 | Setting up libgtk-3-common (3.24.33-1ubuntu2) ...
473 | Setting up gsettings-desktop-schemas (42.0-1ubuntu1) ...
474 | Setting up adwaita-icon-theme (41.0-1ubuntu1) ...
475 | update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode
476 | Setting up liblwp-protocol-https-perl (6.10-1) ...
477 | Setting up libwww-perl (6.61-1) ...
478 | Setting up humanity-icon-theme (0.6.16) ...
479 | Setting up libxml-parser-perl:amd64 (2.46-3build1) ...
480 | Setting up ubuntu-mono (20.10-0ubuntu2) ...
481 | Setting up libxml-twig-perl (1:3.52-1) ...
482 | Setting up libnet-dbus-perl (1.2.0-1build3) ...
483 | Processing triggers for fontconfig (2.13.1-4.2ubuntu5) ...
484 | Processing triggers for libglib2.0-0:amd64 (2.72.1-1) ...
485 | Setting up libgtk-3-0:amd64 (3.24.33-1ubuntu2) ...
486 | Processing triggers for libc-bin (2.35-0ubuntu3.1) ...
487 | Setting up libgtk-3-bin (3.24.33-1ubuntu2) ...
488 | Setting up libvte-2.91-0:amd64 (0.68.0-1) ...
489 | Setting up libvted-3-0:amd64 (3.10.0-1ubuntu1) ...
490 | Setting up at-spi2-core (2.44.0-3) ...
491 | Setting up libgtkd-3-0:amd64 (3.10.0-1ubuntu1) ...
492 | Setting up tilix (1.9.4-2build1) ...
493 | update-alternatives: using /usr/bin/tilix.wrapper to provide /usr/bin/x-terminal-emulator (x-terminal-emulator) in auto mode
494 | update-alternatives: warning: skip creation of /usr/share/man/man1/x-terminal-emulator.1.gz because associated file /usr/share/man/man1/tilix.1.gz (of link group x-terminal-emulator) doesn't exist
495 | Setting up google-chrome-stable (106.0.5249.119-1) ...
496 | update-alternatives: using /usr/bin/google-chrome-stable to provide /usr/bin/x-www-browser (x-www-browser) in auto mode
497 | update-alternatives: using /usr/bin/google-chrome-stable to provide /usr/bin/gnome-www-browser (gnome-www-browser) in auto mode
498 | update-alternatives: using /usr/bin/google-chrome-stable to provide /usr/bin/google-chrome (google-chrome) in auto mode
499 | Processing triggers for libc-bin (2.35-0ubuntu3.1) ...
500 |  
501 | [Container] 2022/10/24 17:35:32 Running command google-chrome --version
502 | Google Chrome 106.0.5249.119
503 |  
504 | [Container] 2022/10/24 17:35:32 Running command CHROME_VERSION=`google-chrome --version \| awk -F '[ .]' '{print $3"."$4"."$5}'`
505 |  
506 | [Container] 2022/10/24 17:35:32 Running command CHROME_DRIVER_VERSION=`wget -qO- chromedriver.storage.googleapis.com/LATEST_RELEASE_$CHROME_VERSION`
507 |  
508 | [Container] 2022/10/24 17:35:32 Running command wget -qO /tmp/chromedriver_linux64.zip https://chromedriver.storage.googleapis.com/$CHROME_DRIVER_VERSION/chromedriver_linux64.zip
509 |  
510 | [Container] 2022/10/24 17:35:32 Running command unzip -q /tmp/chromedriver_linux64.zip -d /opt
511 |  
512 | [Container] 2022/10/24 17:35:32 Running command rm /tmp/chromedriver_linux64.zip
513 |  
514 | [Container] 2022/10/24 17:35:32 Running command mv /opt/chromedriver /opt/chromedriver-$CHROME_DRIVER_VERSION
515 |  
516 | [Container] 2022/10/24 17:35:32 Running command chmod 755 /opt/chromedriver-$CHROME_DRIVER_VERSION
517 |  
518 | [Container] 2022/10/24 17:35:32 Running command ln -s /opt/chromedriver-$CHROME_DRIVER_VERSION /usr/bin/chromedriver
519 |  
520 | [Container] 2022/10/24 17:35:32 Running command chromedriver --version
521 | ChromeDriver 106.0.5249.61 (511755355844955cd3e264779baf0dd38212a4d0-refs/branch-heads/5249@{#569})
522

@rgant
Copy link

rgant commented Oct 24, 2022

I added:

env:
  variables:
    DEBIAN_FRONTEND: "noninteractive"  # apt-get be quieter

and changed the install to:

      - apt-get -o=Dpkg::Use-Pty=0 -qq install -y google-chrome-stable

A bit less noise now, but still a lot of:

59 | Selecting previously unselected package libasound2:amd64.
60 | Preparing to unpack .../002-libasound2_1.2.6.1-1ubuntu1_amd64.deb ...
61 | Unpacking libasound2:amd64 (1.2.6.1-1ubuntu1) ...

@jiang-gao
Copy link

same here, we would also like to have chrome driver for our testing for 6.0 version

@samburnstone
Copy link

samburnstone commented Apr 14, 2023

I worked around this issue by using the Cypress docker images hosted on the public ECR registry.

I needed to install the AWS cli tools as additional build commands and it's possible you may need to install some additional tools that were being provided by the AWS image.

This slowed down our builds slightly, but only by around 10-15 seconds (from 30 seconds to provision the AWS provided image to 45 seconds for the Cypress one).

@aqsyed
Copy link

aqsyed commented Apr 15, 2023

I was wondering if there was an update to this issue ? will the chrome binaries be added soon ?

@subasically
Copy link

Still no Chrome? We have version 7.0 and it also is missing Chrome.

Is there any solutions that don't involve installing chrome manually?

@trivikr
Copy link
Member

trivikr commented Jun 13, 2023

Anyone looking to install firefox, the following YAML worked for me for ubuntu/standard/6.0:

version: 0.2

env:
  variables:
     DEBIAN_FRONTEND: "noninteractive" # apt-get be quieter
phases:
  install:
    commands:
      - add-apt-repository ppa:mozillateam/ppa > /dev/null
      - |
        echo '
        Package: *
        Pin: release o=LP-PPA-mozillateam
        Pin-Priority: 1001

        Package: firefox
        Pin: version 1:1snap1-0ubuntu2
        Pin-Priority: -1
        ' | tee /etc/apt/preferences.d/mozilla-firefox
      - apt-get install -y firefox > /dev/null

Source: https://www.omgubuntu.co.uk/2022/04/how-to-install-firefox-deb-apt-ubuntu-22-04

@KyleVassella
Copy link

Same problem for me in June 2023, upgraded from image 5.0 to image 6.0 (was necessary) and discovered our unit tests no longer run for this reason.

@subasically
Copy link

This is how I solved it

version: 0.2

phases:
  pre_build:
    commands:
      - echo Updating Node.js to version 18
      - n 18
      - node -v
      - npm -v
      - echo Running apt update to get newest Chrome
      - apt-get update && apt-get -y upgrade

@savvasmarkstatkus
Copy link

Least for Codebuild 7 the apt-get update && apt-get -y upgrade doesn't seem to correct the:
Please, set "CHROME_BIN" env variable.

@Ji-Lancom
Copy link

This works for me for ubuntu/standard/7.0

phases:
    install:
        commands:
            - wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
            - apt-get update -y
            - apt-get install -y ./google-chrome*.deb

@subinataws subinataws changed the title Chrome binaries are missing from image 6.0 Add support for browsers Apr 11, 2024
@rforster-dev
Copy link

Any update on this? I see my bug #593 has been linked to this, and the way we are doing it is downloading and installing Chrome everytime which doesn't seem like a good use of resource when it should be already available on the image. Our primary use for this, is for Chromedriver tests.

@frichtarik
Copy link

Hi @subinataws, since you've closed 2 issues that requested basically the same for different codebuild images, i'll add my request here

please consider supporting browsers on the amazonlinux2 images too, especially the aarch64 for which i didn't find working way to install chrome at all. Thx in advance

@jonnysooter
Copy link

Thanks for the request. We've added browser support into our latest standard image release: https://github.com/aws/aws-codebuild-docker-images/blob/master/ubuntu/standard/7.0/Dockerfile#L209-L255

We will also support aarch64 once Chrome offers this natively: GoogleChromeLabs/chrome-for-testing#1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests