Skip to content

Commit

Permalink
Deepfried
Browse files Browse the repository at this point in the history
  • Loading branch information
wheremyfoodat authored Nov 25, 2023
1 parent 7fffaf9 commit c763ab7
Showing 1 changed file with 1 addition and 40 deletions.
41 changes: 1 addition & 40 deletions .github/workflows/Android_Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,48 +36,9 @@ jobs:
cd src/pandroid
./gradlew assembleDebug
name: Qt Build

on:
push:
branches:
- master
pull_request:

env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release

jobs:
Windows:
runs-on: windows-latest

steps:
- uses: actions/checkout@v2
- name: Fetch submodules
run: git submodule update --init --recursive

- name: Setup Qt
uses: jurplel/install-qt-action@v3
with:
arch: win64_msvc2019_64
version: 6.2.0

- name: Setup Vulkan SDK
uses: humbletim/[email protected]
with:
vulkan-query-version: latest
vulkan-use-cache: true
vulkan-components: Vulkan-Headers, Vulkan-Loader, SPIRV-Tools, Glslang

- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DENABLE_USER_BUILD=ON -DENABLE_QT_GUI=ON

- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}

- name: Upload executable
uses: actions/upload-artifact@v2
with:
name: Android APK (x86-64)
path: './app/build/outputs/apk/debug/app-debug.apk'

0 comments on commit c763ab7

Please sign in to comment.