From 384ae2f4a514cc835e1db72ecf75d2effe45ce8e Mon Sep 17 00:00:00 2001 From: Maksim Belov <45949002+artdeell@users.noreply.github.com> Date: Sat, 30 Dec 2023 19:03:56 +0300 Subject: [PATCH] Delete the wrongly placed workflow config --- .github/android.yml | 57 --------------------------------------------- 1 file changed, 57 deletions(-) delete mode 100644 .github/android.yml diff --git a/.github/android.yml b/.github/android.yml deleted file mode 100644 index cbc380f..0000000 --- a/.github/android.yml +++ /dev/null @@ -1,57 +0,0 @@ -name: Build Android - -on: - [push, pull_request, workflow_dispatch] - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - build: - strategy: - matrix: - arch: [ "arm32", "aarch64", "x86_64", "i686" ] - fail-fast: false - - name: "Build for ${{matrix.arch}}" - - runs-on: ubuntu-latest - - steps: - - name: Disable symlinks in git config - run: git config --global core.symlinks false - - - uses: actions/checkout@v2 - - - name: Build - run: | - sudo apt update - sudo apt install -y meson libxrandr-dev libxxf86vm-dev libxcb-*-dev libx11-xcb-dev libxfixes-dev libdrm-dev libx11-dev - pip3 install mako - export ANDROID_NDK_HOME="$ANDROID_SDK_ROOT/ndk-bundle" - envsubst build-crossfile - git clone --depth 1 https://gitlab.freedesktop.org/mesa/mesa.git - cd mesa - git apply --reject --whitespace=fix ../mesa-zink.diff || echo "git apply failed" - meson setup "build-android" \ - --prefix=/tmp/zink \ - --cross-file "../build-crossfile" \ - -Dplatforms=android \ - -Dplatform-sdk-version=25 \ - -Dandroid-stub=true \ - -Dllvm=disabled \ - -Dxlib-lease=disabled \ - -Degl=disabled \ - -Dgbm=disabled \ - -Dglx=disabled \ - -Dopengl=true \ - -Dosmesa=true \ - -Dvulkan-drivers= \ - -Dgallium-drivers=zink \ - -Dshared-glapi=false \ - -Dandroid-libbacktrace=disabled \ - -Dbuildtype=release - ninja -C "build-android" install - - name: Upload libraries - uses: actions/upload-artifact@v2 - with: - name: libzink_${{matrix.arch}} - path: /tmp/zink