Skip to content
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

[CI] Enable basic setup with Jenkins over Docker. #13

Merged
merged 3 commits into from
Feb 4, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
ARG NODE_VERSION=10.23.1
FROM node:${NODE_VERSION} AS base

ENV HOME '.'
RUN apt-get update && \
apt-get -y install xvfb gconf-service libasound2 libatk1.0-0 libc6 libcairo2 libcups2 \
libdbus-1-3 libexpat1 libfontconfig1 libgcc1 libgconf-2-4 libgdk-pixbuf2.0-0 libglib2.0-0 \
libgtk-3-0 libnspr4 libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 libx11-xcb1 libxcb1 \
libxcomposite1 libxcursor1 libxdamage1 libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 \
libxtst6 ca-certificates fonts-liberation libappindicator1 libnss3 lsb-release xdg-utils wget openjdk-8-jre && \
rm -rf /var/lib/apt/lists/*

RUN curl -sSL https://dl.google.com/linux/linux_signing_key.pub | apt-key add - \
&& sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \
&& apt-get update \
&& apt-get install -y rsync jq bsdtar google-chrome-stable \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

RUN LATEST_VAULT_RELEASE=$(curl -s https://api.github.com/repos/hashicorp/vault/tags | jq --raw-output .[0].name[1:]) \
&& curl -L https://releases.hashicorp.com/vault/${LATEST_VAULT_RELEASE}/vault_${LATEST_VAULT_RELEASE}_linux_amd64.zip -o vault.zip \
&& unzip vault.zip \
&& rm vault.zip \
&& chmod +x vault \
&& mv vault /usr/local/bin/vault

RUN apt-get update && apt-get install -y \
python-pip
RUN pip install awscli

RUN groupadd -r kibana && useradd -r -g kibana kibana && mkdir /home/kibana && chown kibana:kibana /home/kibana

USER kibana
37 changes: 25 additions & 12 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,18 +1,31 @@
node {
label 'website'
def scmVars = checkout scm
sh "env"
echo "BRANCH: ${scmVars.GIT_BRANCH}, COMMIT: ${scmVars.GIT_COMMIT}"
stage('bootstrap') {
sh 'yarn kbn bootstrap'
def imageName = "test-image:${env.BUILD_ID}"
def testImage
stage('Build container image') {
sh 'ls -l'
testImage = docker.build imageName
}
stage('unit tests') {
sh 'yarn test:jest'
}
stage('integration tests') {
sh 'yarn test:jest_integration'
sh 'yarn test:mocha'
}
stage('build'){
sh 'yarn build --oss --skip-os-packages'
testImage.inside {
try {
stage('bootstrap') {
sh 'yarn kbn bootstrap'
}
stage('unit tests') {
sh 'yarn test:jest -u --ci --verbose --maxWorkers=5'
}
stage('integration tests') {
sh 'yarn test:jest_integration -u --ci'
sh 'yarn test:mocha'
}
} catch (e) {
echo 'This will run only if failed'
currentBuild.result = 'FAILURE'
// Since we're catching the exception in order to report on it,
// we need to re-throw it, to ensure that the build is marked as failed
throw e
}
}
}