From 985142b5f54f80827a62471a0f8f6bf72d5087e4 Mon Sep 17 00:00:00 2001 From: Hoan Nguyen Date: Fri, 5 Jul 2024 15:01:48 +0700 Subject: [PATCH] remove ci --- .github/workflows/ci-build.yml | 51 ---------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 .github/workflows/ci-build.yml diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml deleted file mode 100644 index 5a946e369..000000000 --- a/.github/workflows/ci-build.yml +++ /dev/null @@ -1,51 +0,0 @@ -name: CI Build -run-name: Build on branch ${{github.ref_name}} triggered by ${{github.actor}} - -on: - push: - workflow_dispatch: - -jobs: - analysis: - name: Sonarqube analysis - runs-on: self-hosted - env: - SONAR_PROJECT_KEY: "AxonIvy-Market-Service" - SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} - SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} - - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - uses: sonarsource/sonarqube-scan-action@master - env: - SONAR_TOKEN: ${{ env.SONAR_TOKEN }} - SONAR_HOST_URL: ${{ env.SONAR_HOST_URL }} - with: - args: - -Dsonar.projectKey=${{ env.SONAR_PROJECT_KEY }} - - name: SonarQube Quality Gate check - id: sonarqube-quality-gate-check - uses: sonarsource/sonarqube-quality-gate-action@master - timeout-minutes: 5 - env: - SONAR_TOKEN: ${{ env.SONAR_TOKEN }} - SONAR_HOST_URL: ${{ env.SONAR_HOST_URL }} - with: - args: - -Dsonar.projectKey=${{ env.SONAR_PROJECT_KEY }} - build: - name: Executes Tests - runs-on: self-hosted - - steps: - - uses: actions/checkout@v4 - - name: Set up JDK 17 - uses: actions/setup-java@v3 - with: - java-version: '17' - distribution: 'temurin' - cache: maven - - name: Tests with Maven - run: mvn -B test --file pom.xml