v6.2.57 #65
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: NOVA F-Droid CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
ANDROID_SDK_HOME: ${ANDROID_HOME} | |
ANDROID_SDK: ${ANDROID_HOME} | |
ANDROID_NDK_HOME: ${ANDROID_NDK_LATEST_HOME} | |
ANDROID_NDK: ${ANDROID_NDK_LATEST_HOME} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: install packages | |
run: | | |
sudo apt-get update || sudo apt-get update | |
sudo apt-get install -y ninja-build maven build-essential wget curl unzip git pkg-config | |
- name: install recent nasm for dav1d | |
run: | | |
wget http://ftp.debian.org/debian/pool/main/n/nasm/nasm_2.15.05-1_amd64.deb | |
sudo dpkg -i ./nasm_2.15.05-1_amd64.deb | |
nasm --version | |
- name: install compatible meson with dav1d | |
run: | | |
sudo apt-get install -y python3 python3-pip python3-setuptools python3-wheel | |
sudo pip3 install meson==0.53.2 | |
meson --version | |
- name: build | |
run: | | |
cd Video | |
./gradlew -Psponsor -PadultScrape aNR |