manifest: track Aperture/Glimpse prebuilts from lineage os rev #30
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: Test droid-legacy manifest | |
on: | |
push: | |
branches: [ lineage-19.1 ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v2 | |
- name: Install repo tool | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y git-core python3-pip wget | |
wget https://storage.googleapis.com/git-repo-downloads/repo && sudo mv repo /usr/bin/repo && sudo chmod a+x /usr/bin/repo | |
- name: Initialize and sync repos | |
run: | | |
repo init -u https://github.com/droid-legacy/android.git -b lineage-19.1 | |
timeout 1m repo sync || true | |
timeout-minutes: 6 |