Skip to content

fix dockerfile

fix dockerfile #4461

Workflow file for this run

name: Backend CI
on:
pull_request: ~
push:
branches:
- "main"
- "staging"
- "production"
workflow_dispatch:
inputs:
debug_enabled:
type: boolean
description: "Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)"
required: false
default: false
jobs:
build:
name: Build
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Java setup
uses: ./.github/actions/java-setup
- name: Maven build
run: ./mvnw clean install -T 4 -DskipTests -DskipITs -DskipUTs
- name: Upload jar file as artifact
uses: actions/upload-artifact@v4
with:
name: marketplace-api.jar
path: bootstrap/target/marketplace-api.jar
if-no-files-found: error
unit_tests:
name: Unit tests
runs-on: ubuntu-latest
needs: [ build ]
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Java setup
uses: ./.github/actions/java-setup
- name: Maven test
run: ./mvnw test -T 6
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage/target/site/jacoco-aggregate/jacoco.xml
flags: unit_tests
integration_tests:
strategy:
fail-fast: false
matrix:
suite: [ Accounting, BO, Concurrency, Me, Project, Reward, User, BI, Others, Postgres ]
name: ITs [${{ matrix.suite }}]
runs-on: ubuntu-latest
needs: [ build ]
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
lfs: true
- name: Java setup
uses: ./.github/actions/java-setup
- name: Maven test
run: ./mvnw verify -Dfailsafe-include='**/${{ matrix.suite }}Suite.java' -DskipUTs=true -T 6
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage/target/site/jacoco-aggregate/jacoco.xml
flags: integration_tests