1
0
mirror of git://f0xx.org/android_cast synced 2026-07-29 05:17:39 +03:00
This commit is contained in:
Anton Afanasyeu
2026-05-31 12:43:03 +02:00
parent cfc1ccfc01
commit 2b3607c1b3
3 changed files with 78 additions and 0 deletions

24
.circleci/config.yml Normal file
View File

@@ -0,0 +1,24 @@
version: 2.1
# Local validation: circleci config validate .circleci/config.yml
# Mirrors build.config.yml for CircleCI CLI compatibility.
orbs: {}
jobs:
android-build:
docker:
- image: cimg/base:stable
steps:
- checkout
- run:
name: Run docker build runner
command: ./scripts/docker-build-runner.sh
workflows:
androidcast:
jobs:
- android-build:
filters:
branches:
only: [next, master]