Skip to content

Commit

Permalink
[CI] Enable basic setup with Jenkins over Docker. (#13)
Browse files Browse the repository at this point in the history
* [CI] Update Jenkis file with basic setup

* [CI] Enable Dockerfile with Jenkins

Signed-off-by: Peter Nied <petern@amazon.com>
  • Loading branch information
mihirsoni authored and peternied committed Mar 13, 2021
1 parent c880066 commit a4a5ef1
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 12 deletions.
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
}
}
}

0 comments on commit a4a5ef1

Please sign in to comment.