From 2ae475de741353138a3180cc3299484d4f5f61c7 Mon Sep 17 00:00:00 2001 From: Aleksandr Chikovani Date: Mon, 28 Aug 2023 23:02:11 -0400 Subject: [PATCH] various fixes? --- .github/workflows/gradle-build.yml | 7 +++---- Dockerfile | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/gradle-build.yml b/.github/workflows/gradle-build.yml index 962a8f203..c96245458 100644 --- a/.github/workflows/gradle-build.yml +++ b/.github/workflows/gradle-build.yml @@ -12,7 +12,8 @@ jobs: runs-on: ubuntu-latest steps: - - uses: thehanimo/pr-title-checker@v1.4.0 + - name: PR title check + uses: thehanimo/pr-title-checker@v1.4.0 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - uses: actions/checkout@v3 @@ -39,7 +40,7 @@ jobs: - name: Test run: ./gradlew test - name: Build - run: ./gradlew build -x test -x checkstyleMain + run: ./gradlew build -x test -x checkstyleMain -x checkstyleAot docker_build: runs-on: ubuntu-latest @@ -61,8 +62,6 @@ jobs: run: git config --global url.https://github.com/.insteadOf ssh://git@github.com/ - name: Checkout project uses: actions/checkout@v3 - with: - repository: 'jshttp/mime-types' - name: Run GitHub Action for ORT uses: oss-review-toolkit/ort-ci-github-action@v1 with: diff --git a/Dockerfile b/Dockerfile index f8da29a45..1b5e98ef3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ ARG VERSION undefined ENV VERSION=$VERSION WORKDIR /app COPY . . -RUN ./gradlew build -x test -x checkstyleMain -Pversion=$VERSION +RUN ./gradlew build -x test -x checkstyleAot -x checkstyleMain -Pversion=$VERSION FROM eclipse-temurin@sha256:e90e0d654765ab3ae33f5c5155daafa4a907d0d738ce98c3be8f402a8edcee2b ENV PORT 8080