From 06f97aa269e853cb0500a06d513f8e374ee8b302 Mon Sep 17 00:00:00 2001 From: Matt Bowersox Date: Tue, 19 Sep 2023 18:21:37 -0500 Subject: [PATCH] Disable DevContainerTest --- .github/workflows/gradle.yml | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 7fdb99e9..eb9de0aa 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -27,21 +27,6 @@ jobs: RUNTIME_VERSION: 23.0.0.3 name: ${{ matrix.RUNTIME }} ${{ matrix.RUNTIME_VERSION }}, Java ${{ matrix.java }}, Linux steps: - - name: Install Podman - uses: gacts/install-podman@v1 - with: - qemu: true - - name: Setup qemu - run: | - echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules - sudo udevadm control --reload-rules - sudo udevadm trigger --name-match=kvm - sudo apt install qemu-system-x86 - - name: Setup Podman - run: | - podman version - podman machine init --rootful=true - podman machine start # Checkout repos - name: Checkout ci.gradle uses: actions/checkout@v3 @@ -85,7 +70,7 @@ jobs: # Run tests - name: Run tests with Gradle on Ubuntu run: - ./gradlew clean install check -Druntime=${{ matrix.RUNTIME }} -DruntimeVersion="${{ matrix.RUNTIME_VERSION }}" --stacktrace --info + ./gradlew clean install check -Druntime=${{ matrix.RUNTIME }} -DruntimeVersion="${{ matrix.RUNTIME_VERSION }}" -P"test.exclude"="**/DevContainerTest*" --stacktrace --info # Copy build reports and upload artifact if build failed - name: Copy build/report/tests/test for upload if: ${{ failure() }}