Skip to content

chore: Update dependencies #83

chore: Update dependencies

chore: Update dependencies #83

Workflow file for this run

name: CI
on:
push:
branches:
- master
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
architecture: [armv7l, arm64, x86, x86_64]
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: '17'
distribution: temurin
- name: Build the release artifacts
run: |
set -x
unset ANDROID_SDK_ROOT
cd buildscripts
./download.sh > /dev/null
./buildall.sh --arch ${{ matrix.architecture }} mpv
./buildall.sh -n
env:
GRADLE_OPTS: -Xmx4G