-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
65 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
# For CircleCI, make sure to publish a new Docker image | ||
source 'https://rubygems.org' | ||
|
||
gem 'jekyll', '~> 3.6' | ||
gem 'jekyll', '~> 4.3.4' | ||
|
||
group :jekyll_plugins do | ||
gem 'jekyll-algolia' | ||
gem 'jekyll-sitemap', '~> 0.10.0' | ||
gem 'jekyll-sitemap', '~> 1.4' | ||
gem 'kramdown-parser-gfm' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,31 @@ | ||
# Build: | ||
# | ||
# docker build --build-arg sbt_version=1.6.2 -t cchantep/reactivemongo-site -f circleci.dockerfile . | ||
# docker build --build-arg sbt_version=1.10.1 -t cchantep/reactivemongo-site -f circleci.dockerfile . | ||
|
||
# Push: | ||
# | ||
# docker push cchantep/reactivemongo-site | ||
|
||
FROM circleci/ruby:2.5-node-browsers | ||
FROM cimg/ruby:3.3.6-node | ||
|
||
ARG sbt_version=1.6.2 | ||
ARG sbt_version=1.10.1 | ||
|
||
COPY .ci_scripts/beforeInstall.sh / | ||
COPY Gemfile / | ||
COPY .ci_scripts/beforeInstall.sh /home/circleci/ | ||
COPY Gemfile Gemfile.lock /home/circleci/ | ||
|
||
USER root | ||
|
||
RUN wget https://bootstrap.pypa.io/get-pip.py && \ | ||
python3.7 get-pip.py --user && \ | ||
chmod u+x beforeInstall.sh && \ | ||
./beforeInstall.sh ${sbt_version} | ||
|
||
# For PDF generation | ||
RUN sudo apt-get update -y && \ | ||
sudo apt-get install pandoc texlive-xetex fonts-inconsolata | ||
RUN sudo apt update -y && sudo apt upgrade -y && \ | ||
sudo apt-get install -y python3-distutils pandoc texlive-xetex fonts-inconsolata openjdk-11-jdk && \ | ||
wget https://bootstrap.pypa.io/get-pip.py && \ | ||
python3.10 get-pip.py --user && \ | ||
rm -f get-pip.py && \ | ||
cd /home/circleci && \ | ||
chown circleci beforeInstall.sh Gemfile Gemfile.lock && \ | ||
chmod a+x beforeInstall.sh | ||
|
||
USER circleci | ||
WORKDIR /home/circleci | ||
|
||
RUN ./beforeInstall.sh ${sbt_version} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
sbt.version=1.9.7 | ||
sbt.version=1.10.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters