Skip to content
This repository has been archived by the owner on Dec 5, 2023. It is now read-only.

Commit

Permalink
Merge pull request #58 from Ottovsky/master
Browse files Browse the repository at this point in the history
Add GitHub actions
  • Loading branch information
Ottovsky committed Sep 29, 2020
2 parents 957e3b2 + 6e8424d commit dc58fe2
Show file tree
Hide file tree
Showing 2 changed files with 99 additions and 0 deletions.
89 changes: 89 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
name: ci

on:
push:
branches:
- "*" # run for branches
tags:
- "*" # run for tags
pull_request:
branches:
- "*" # run for branches
tags:
- "*" # run for tags

jobs:
test:
runs-on: ubuntu-latest
env:
GROUP: weaveworksdemos
COMMIT: ${{ github.sha }}
REPO: orders
steps:
- uses: actions/checkout@v2

- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8

- name: Cache Maven packages
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2

- name: Build with Maven
run: mvn -B -DskipTests package --file pom.xml

- name: Unit Tests
run: mvn -q test

- name: Integration Tests
run: mvn integration-test

# Build docker image for service
- name: Build docker image
uses: docker/build-push-action@v1
with:
push: false
dockerfile: docker/orders/Dockerfile.github
repository: ${{ env.GROUP }}/${{ env.REPO }}
tag_with_ref: true
tag_with_sha: true
tags: ${{ github.sha }}

# Build docker image for mock service
- name: Build mock docker image
uses: docker/build-push-action@v1
with:
push: false
path: test/json-server/
dockerfile: test/json-server/Dockerfile
repository: weaveworksdemos/json-server
tags: latest

# Run simple test against built container
- name: Test docker image
env:
DOCKER_BUILDKIT: 1
run: ./test/test.sh container.py --tag ${GITHUB_SHA}

# Upload coverage results to coveralls
- name: Submit Coveralls
env:
COVERALLS_TOKEN: ${{ secrets.COVERALLS_TOKEN }}
run: mvn -DrepoToken=${COVERALLS_TOKEN} -DserviceJobId=${GITHUB_RUN_ID} -Dbranch=${GITHUB_REF} -DpullRequest=${GITHUB_HEAD_REF} -DserviceName=GITHUB verify jacoco:report coveralls:report

# Push to dockerhub
- name: Push to Docker Hub
uses: docker/build-push-action@v1
if: startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/master'
with:
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PASS }}
dockerfile: docker/orders/Dockerfile.github
repository: ${{ env.GROUP }}/${{ env.REPO }}
tag_with_ref: true
tag_with_sha: true
10 changes: 10 additions & 0 deletions docker/orders/Dockerfile.github
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM weaveworksdemos/msd-java:jre-latest

WORKDIR /usr/src/app
COPY target/*.jar ./app.jar

RUN chown -R ${SERVICE_USER}:${SERVICE_GROUP} ./app.jar

USER ${SERVICE_USER}

ENTRYPOINT ["/usr/local/bin/java.sh","-jar","./app.jar", "--port=80"]

0 comments on commit dc58fe2

Please sign in to comment.