diff --git a/.github/workflows/code-analysis.yml b/.github/workflows/code-analysis.yml deleted file mode 100644 index 4134ecd26..000000000 --- a/.github/workflows/code-analysis.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: Code Analysis -on: [push, pull_request] -jobs: - build: - name: Code analysis - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - with: - fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis - - name: Set up JDK 11 - uses: actions/setup-java@v3 - with: - java-version: 11 - distribution: adopt - - name: Cache SonarCloud packages - uses: actions/cache@v3 - with: - path: ~/.sonar/cache - key: ${{ runner.os }}-sonar - restore-keys: ${{ runner.os }}-sonar - - name: Cache Maven packages - uses: actions/cache@v3 - with: - path: ~/.m2 - key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} - restore-keys: ${{ runner.os }}-m2 - - name: Build and analyze with SonarCloud - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any - SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} - run: > - mvn -B verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar - -Dsonar.c.file.suffixes= -Dsonar.cpp.file.suffixes=- -Dsonar.objc.file.suffixes=- - diff --git a/.github/workflows/required.yml b/.github/workflows/required.yml deleted file mode 100644 index ffddc1ddb..000000000 --- a/.github/workflows/required.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: Required Tests - -on: [push, pull_request] - -jobs: - test: - runs-on: ubuntu-latest - strategy: - matrix: - image: - - 'debian_jdk11' - - 'ubuntu_jdk11' - # Disable tests due to missing dependencies - # - 'centos_7' - # - 'centos_8' - - steps: - - name: Clone the repository - uses: actions/checkout@v3 - - - name: Build and Run the Docker Image - run: bash tools/run_container.sh "${{ matrix.image }}"