From 11e24620b8ae4a6cf68e32b5bfeb694dac85b1ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=97=B1=20PixelyIon?= Date: Tue, 14 Apr 2020 23:06:36 +0530 Subject: [PATCH] Fix GitHub Actions build running out of disk space This commit fixes the GitHub Actions build running out of disk space by removing the existing NDK image as we already install that manually. --- .github/workflows/ci.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6f6f9f20..c6004e4a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,9 +5,6 @@ on: push jobs: build: runs-on: ubuntu-latest - container: - image: circleci/android:api-29-ndk - options: -u root env: JVM_OPTS: -Xmx6G @@ -36,9 +33,6 @@ jobs: - name: Setup Environment for Gradle run: chmod +x gradlew - - name: Install CMake from Android SDK Manager - run: yes | sdkmanager --install "ndk;21.0.6113669" "cmake;3.10.2.4988404" | grep -v = || true - - name: Android Lint run: ./gradlew --stacktrace lint