Skip to content

Add fail-fast: false #19

Add fail-fast: false

Add fail-fast: false #19

Workflow file for this run

name: Test your repo manifest repository

Check failure on line 1 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/main.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: strategy
on:
workflow_dispatch:
inputs:
MANIFEST_URL:
description: 'MANIFEST_URL (if want to use SSH keys, use [email protected]:XXXXX)'
required: true
default: 'https://github.com/minimal-manifest-twrp/platform_manifest_twrp_aosp'
MANIFEST_BRANCH:
description: 'MANIFEST_BRANCH'
required: true
default: 'twrp-12.1'
CHOICE:
type: choice
description: 'ROM or Local Manifest'
options:
- ROM_MANIFEST
- LOCAL_MANIFEST
GIT_USERNAME:
description: 'GIT_USERNAME'
required: true
default: 'sounddrill31'
GIT_EMAIL:
description: 'GIT_EMAIL'
required: true
default: '[email protected]'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Cleanup
uses: rokibhasansagar/slimhub_actions@main
- 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 Repo for Manifest
run: |
mkdir workspace
cd workspace
echo "workspace-folder=$(pwd)" >> $GITHUB_OUTPUT
git config --global user.name ${{ github.event.inputs.GIT_USERNAME }}
git config --global user.email ${{ github.event.inputs.GIT_EMAIL }}
if [ "${{ github.event.inputs.choice }}" == "ROM_MANIFEST" ]; then
repo init --depth=1 -u ${{ github.event.inputs.MANIFEST_URL }} -b ${{ github.event.inputs.MANIFEST_BRANCH }}
else
rm -rf .repo/local_manifests
repo init --depth=1 -u https://github.com/minimal-manifest-twrp/platform_manifest_twrp_aosp -b twrp-12.1
git clone ${{ github.event.inputs.MANIFEST_URL }} -b ${{ github.event.inputs.MANIFEST_BRANCH }} .repo/local_manifests
fi
timeout 1m repo sync --force-sync || true
timeout-minutes: 6
#- name: Initialize and Sync Repo for Local Manifest
# if: ["${{ github.event.inputs.choice }}" == "LOCAL_MANIFEST"]; then
# run: |
# mkdir workspace
# cd workspace
# echo "workspace-folder=$(pwd)" >> $GITHUB_OUTPUT
# git config --global user.name ${{ github.event.inputs.GIT_USERNAME }}
# git config --global user.email ${{ github.event.inputs.GIT_EMAIL }}
# git clone ${{ github.event.inputs.MANIFEST_URL }} -b ${{ github.event.inputs.MANIFEST_BRANCH }} .repo/local_manifests
# repo init --depth=1 -u https://github.com/minimal-manifest-twrp/platform_manifest_twrp_aosp -b twrp-12.1
# timeout 1m repo sync || true
# timeout-minutes: 6
# id: pwd
strategy:
fail-fast: false