Skip to content

Commit 3114e90

Browse files
committed
Add chrome signing keys before update
1 parent 7c03187 commit 3114e90

File tree

1 file changed

+36
-8
lines changed

1 file changed

+36
-8
lines changed

.circleci/config.yml

Lines changed: 36 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2.1
33
orbs:
44
win: circleci/[email protected]
55
percy: percy/[email protected]
6-
browser-tools: circleci/browser-tools@1.4.8
6+
browser-tools: circleci/browser-tools@1.5.0
77

88

99
jobs:
@@ -99,7 +99,11 @@ jobs:
9999

100100
steps:
101101
- checkout
102-
- run: sudo apt-get update
102+
- run:
103+
name: Add chrome keys & update.
104+
command: |
105+
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
106+
sudo apt-get update
103107
- run: echo $PYVERSION > ver.txt
104108
- run: cat requirements/*.txt > requirements-all.txt
105109
- restore_cache:
@@ -189,7 +193,11 @@ jobs:
189193
steps:
190194
- checkout:
191195
path: ~/dash
192-
- run: sudo apt-get update
196+
- run:
197+
name: Add chrome keys & update.
198+
command: |
199+
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
200+
sudo apt-get update
193201
- run: echo $PYVERSION > ver.txt
194202
- run: cat requirements/*.txt > requirements-all.txt
195203
- restore_cache:
@@ -306,7 +314,11 @@ jobs:
306314
steps:
307315
- checkout:
308316
path: ~/dash
309-
- run: sudo apt-get update
317+
- run:
318+
name: Add chrome keys & update.
319+
command: |
320+
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
321+
sudo apt-get update
310322
- run: echo $PYVERSION > ver.txt
311323
- run: cat requirements/*.txt > requirements-all.txt
312324
- restore_cache:
@@ -375,7 +387,11 @@ jobs:
375387
steps:
376388
- checkout:
377389
path: ~/dash
378-
- run: sudo apt-get update
390+
- run:
391+
name: Add chrome keys & update.
392+
command: |
393+
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
394+
sudo apt-get update
379395
- run: echo $PYVERSION > ver.txt
380396
- run: cat requirements/*.txt > requirements-all.txt
381397
- restore_cache:
@@ -451,7 +467,11 @@ jobs:
451467
steps:
452468
- checkout:
453469
path: ~/dash
454-
- run: sudo apt-get update
470+
- run:
471+
name: Add chrome keys & update.
472+
command: |
473+
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
474+
sudo apt-get update
455475
- run: echo $PYVERSION > ver.txt
456476
- run: cat requirements/*.txt > requirements-all.txt
457477
- restore_cache:
@@ -505,7 +525,11 @@ jobs:
505525
steps:
506526
- checkout:
507527
path: ~/dash
508-
- run: sudo apt-get update
528+
- run:
529+
name: Add chrome keys & update.
530+
command: |
531+
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
532+
sudo apt-get update
509533
- run: echo $PYVERSION > ver.txt
510534
- run: cat requirements/*.txt > requirements-all.txt
511535
- restore_cache:
@@ -547,7 +571,11 @@ jobs:
547571
steps:
548572
- checkout:
549573
path: ~/dash
550-
- run: sudo apt-get update
574+
- run:
575+
name: Add chrome keys & update.
576+
command: |
577+
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
578+
sudo apt-get update
551579
- restore_cache:
552580
key: dep-{{ .Branch }}-{{ checksum "package-lock.json" }}-{{ checksum "package.json" }}
553581
- browser-tools/install-browser-tools:

0 commit comments

Comments
 (0)