Skip to content

Commit 4888955

Browse files
authored
Merge pull request #316 from gruntwork-io/fix-ci-cd
Fix ci cd
2 parents 37fbbdb + b80f45f commit 4888955

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.circleci/config.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,13 @@ references:
3232
3333
install_jdk: &install-jdk
3434
run:
35-
name: install jdk
35+
name: install jdk 8
3636
command: |
37-
sudo apt-get update
38-
sudo apt-get install -y default-jre texlive texlive-xetex texlive-latex-recommended texlive-latex-extra texlive-lang-cjk
37+
sudo apt-get install -y wget gnupg software-properties-common
38+
wget -qO - https://adoptopenjdk.jfrog.io/adoptopenjdk/api/gpg/key/public | sudo apt-key add -
39+
sudo add-apt-repository --yes https://adoptopenjdk.jfrog.io/adoptopenjdk/deb/
40+
sudo apt-get update -y
41+
sudo apt-get install -y adoptopenjdk-8-hotspot texlive texlive-xetex texlive-latex-recommended texlive-latex-extra texlive-lang-cjk
3942
4043
deploy_to_staging: &deploy-to-staging
4144
run:

0 commit comments

Comments
 (0)