10000 format all · jaredtao/TaoCommon@2c3b970 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

format all

format all #52

Workflow file for this run

name: Android
on:
push:
paths:
- 'src/**'
- '.github/workflows/android.yml'
pull_request:
paths:
- 'src/**'
- '.github/workflows/android.yml'
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04]
qt_ver: [5.12.10]
qt_target: [android]
qt_arch: [android_x86,android_armv7,android_arm64_v8a]
steps:
- name: Install Qt
uses: jurplel/install-qt-action@v2
with:
# Version of Qt to install
version: ${{ matrix.qt_ver }}
# Target platform for build
target: ${{ matrix.qt_target }}
# Architecture for Windows/Android
arch: ${{ matrix.qt_arch }}
- uses: actions/checkout@v1
with:
fetch-depth: 1
- name: build android
run: |
export ANDROID_SDK_ROOT=$ANDROID_HOME
export ANDROID_NDK_ROOT=$ANDROID_HOME/ndk-bundle
qmake
make
0