forked from OHDSI/WebAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Puts Maven Central as the first repository This speeds up the build A LOT when none of the dependencies have been cached yet (e.g. when performing a docker build). Reason: without putting this repository first, all dependencies are first searched in all of the specified repositories and only afterwards the central repository is tried. Because most dependencies are not present in the specified repositories, still central needs to be queried afterwards. When putting the central repository first, this reduces time to retrieve dependencies in two ways: 1. The central repository has a very low latency, much lower than the other repositories. If a dependency can be fetched from here, it will be faster than when it is fetched from another one. 2. For most dependencies, it reduces the number of repositories queried from 7 to 1. * Enabled github actions * Use dedicated docker profile to avoid long command line * Backport github action fixes * Fix typo * Remove unsupported platform * Only use Maven central in the webapi-docker profile
- Loading branch information
1 parent
bc33776
commit d920b6a
Showing
6 changed files
with
311 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
/target | ||
/.idea | ||
/src/test | ||
.git |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
### Expected behavior | ||
|
||
### Actual behavior | ||
|
||
### Steps to reproduce behavior |
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 |
---|---|---|
@@ -0,0 +1,130 @@ | ||
# Continuous integration | ||
name: CI | ||
|
||
# Run in master and dev branches and in all pull requests to those branches | ||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
env: | ||
DOCKER_IMAGE: ohdsi/webapi | ||
|
||
jobs: | ||
# Build and test the code | ||
build: | ||
# The type of runner that the job will run on | ||
runs-on: ubuntu-latest | ||
|
||
env: | ||
MAVEN_PROFILE: webapi-postgresql | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@v2 | ||
|
||
- uses: actions/setup-java@v1 | ||
with: | ||
java-version: 8 | ||
|
||
- name: Maven cache | ||
uses: actions/[email protected] | ||
with: | ||
# Cache gradle directories | ||
path: ~/.m2 | ||
# Key for restoring and saving the cache | ||
key: ${{ runner.os }}-maven-${{ hashFiles('pom.xml') }} | ||
restoreKey: ${{ runner.os }}-maven- | ||
|
||
- name: Build code | ||
run: mvn -B -DskipTests -P${{ env.MAVEN_PROFILE }} package | ||
|
||
- name: Test | ||
run: mvn -B -DskipUnitTests=false -P${{ env.MAVEN_PROFILE }} test | ||
|
||
# Check that the docker image builds correctly | ||
# Push to ohdsi/atlas:master for commits on master. | ||
docker: | ||
# The type of runner that the job will run on | ||
runs-on: ubuntu-latest | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Cache Docker layers | ||
uses: actions/cache@v2 | ||
with: | ||
path: /tmp/.buildx-cache | ||
key: ${{ runner.os }}-buildx-${{ github.sha }} | ||
restore-keys: | | ||
${{ runner.os }}-buildx- | ||
# Add Docker labels and tags | ||
- name: Docker meta | ||
id: docker_meta | ||
uses: crazy-max/ghaction-docker-meta@v1 | ||
with: | ||
images: ${{ env.DOCKER_IMAGE }} | ||
|
||
# Setup docker build environment | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v1 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v1 | ||
|
||
- name: Set build parameters | ||
id: build_params | ||
run: | | ||
echo "::set-output name=sha8::${GITHUB_SHA::8}" | ||
if [ ${{ github.event_name == 'pull_request' }} ]; then | ||
echo "::set-output name=push::false" | ||
echo "::set-output name=load::true" | ||
echo "::set-output name=platforms::linux/amd64" | ||
else | ||
echo "::set-output name=push::true" | ||
echo "::set-output name=load::false" | ||
echo "::set-output name=platforms::linux/amd64,linux/arm64" | ||
fi | ||
- name: Login to DockerHub | ||
uses: docker/login-action@v1 | ||
if: steps.build_params.outputs.push == 'true' | ||
with: | ||
username: ${{ secrets.DOCKER_HUB_USERNAME }} | ||
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} | ||
|
||
- name: Build and push | ||
id: docker_build | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: ./ | ||
file: ./Dockerfile | ||
cache-from: type=local,src=/tmp/.buildx-cache | ||
cache-to: type=local,dest=/tmp/.buildx-cache,mode=max | ||
platforms: ${{ steps.build_params.outputs.platforms }} | ||
push: ${{ steps.build_params.outputs.push }} | ||
load: ${{ steps.build_params.outputs.load }} | ||
build-args: | | ||
GIT_BRANCH=${{ steps.docker_meta.outputs.version }} | ||
GIT_COMMIT_ID_ABBREV=${{ steps.build_params.outputs.sha8 }} | ||
tags: ${{ steps.docker_meta.outputs.tags }} | ||
# Use runtime labels from docker_meta as well as fixed labels | ||
labels: | | ||
${{ steps.docker_meta.outputs.labels }} | ||
maintainer=Joris Borgdorff <[email protected]>, Lee Evans - www.ltscomputingllc.com | ||
org.opencontainers.image.authors=Joris Borgdorff <[email protected]>, Lee Evans - www.ltscomputingllc.com | ||
org.opencontainers.image.vendor=OHDSI | ||
org.opencontainers.image.licenses=Apache-2.0 | ||
# If the image was pushed, we need to pull it again to inspect it | ||
- name: Pull image | ||
if: steps.build_params.outputs.push == 'true' | ||
run: docker pull ${{ env.DOCKER_IMAGE }}:${{ steps.docker_meta.outputs.version }} | ||
|
||
- name: Inspect image | ||
run: | | ||
docker image inspect ${{ env.DOCKER_IMAGE }}:${{ steps.docker_meta.outputs.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 |
---|---|---|
@@ -0,0 +1,107 @@ | ||
# Create release files | ||
name: Release | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
env: | ||
DOCKER_IMAGE: ohdsi/webapi | ||
|
||
jobs: | ||
upload: | ||
env: | ||
MAVEN_PROFILE: webapi-postgresql | ||
|
||
# The type of runner that the job will run on | ||
runs-on: ubuntu-latest | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@v2 | ||
|
||
- uses: actions/setup-java@v1 | ||
with: | ||
java-version: 8 | ||
|
||
- name: Maven cache | ||
uses: actions/[email protected] | ||
with: | ||
# Cache gradle directories | ||
path: ~/.m2 | ||
# Key for restoring and saving the cache | ||
key: ${{ runner.os }}-maven-${{ hashFiles('pom.xml') }} | ||
restoreKey: ${{ runner.os }}-maven- | ||
|
||
- name: Build code | ||
run: mvn -B -DskipTests -P${{ env.MAVEN_PROFILE }} package | ||
|
||
# Upload it to GitHub | ||
- name: Upload to GitHub | ||
uses: AButler/[email protected] | ||
with: | ||
files: 'target/WebAPI.war' | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
# Build and push tagged release docker image to | ||
# ohdsi/atlas:<version> and ohdsi/atlas:latest. | ||
docker: | ||
# The type of runner that the job will run on | ||
runs-on: ubuntu-latest | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
# Add Docker labels and tags | ||
- name: Docker meta | ||
id: docker_meta | ||
uses: crazy-max/ghaction-docker-meta@v1 | ||
with: | ||
images: ${{ env.DOCKER_IMAGE }} | ||
tag-match: v(.*) | ||
tag-match-group: 1 | ||
|
||
# Setup docker build environment | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v1 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v1 | ||
|
||
- name: Login to DockerHub | ||
uses: docker/login-action@v1 | ||
with: | ||
username: ${{ secrets.DOCKER_HUB_USERNAME }} | ||
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} | ||
|
||
- name: Set build parameters | ||
id: build_params | ||
run: | | ||
echo "::set-output name=sha8::${GITHUB_SHA::8}" | ||
- name: Build and push | ||
id: docker_build | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: ./ | ||
file: ./Dockerfile | ||
# Allow running the image on the architectures supported by nginx-unprivileged:alpine. | ||
platforms: linux/amd64,linux/arm64 | ||
push: true | ||
build-args: | | ||
GIT_BRANCH=${{ steps.docker_meta.outputs.version }} | ||
GIT_COMMIT_ID_ABBREV=${{ steps.build_params.outputs.sha8 }} | ||
tags: ${{ steps.docker_meta.outputs.tags }} | ||
# Use runtime labels from docker_meta as well as fixed labels | ||
labels: | | ||
${{ steps.docker_meta.outputs.labels }} | ||
maintainer=Joris Borgdorff <[email protected]>, Lee Evans - www.ltscomputingllc.com | ||
org.opencontainers.image.authors=Joris Borgdorff <[email protected]>, Lee Evans - www.ltscomputingllc.com | ||
org.opencontainers.image.vendor=OHDSI | ||
org.opencontainers.image.licenses=Apache-2.0 | ||
- name: Inspect image | ||
run: | | ||
docker pull ${{ env.DOCKER_IMAGE }}:${{ steps.docker_meta.outputs.version }} | ||
docker image inspect ${{ env.DOCKER_IMAGE }}:${{ steps.docker_meta.outputs.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
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