fix(src/es/Hackstore) Video empty #1680
Workflow file for this run
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: PR build check | |
on: | |
pull_request: | |
paths: | |
- '**' | |
- '!**.md' | |
- '!.github/**' | |
- '.github/workflows/build_pull_request.yml' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number }} | |
cancel-in-progress: true | |
env: | |
CI_CHUNK_SIZE: 65 | |
jobs: | |
prepare: | |
name: Prepare job | |
runs-on: ubuntu-latest | |
outputs: | |
individualMatrix: ${{ steps.generate-matrices.outputs.individualMatrix }} | |
multisrcMatrix: ${{ steps.generate-matrices.outputs.multisrcMatrix }} | |
isIndividualChanged: ${{ steps.parse-changed-files.outputs.isIndividualChanged }} | |
isMultisrcChanged: ${{ steps.parse-changed-files.outputs.isMultisrcChanged }} | |
env: | |
CI_MODULE_GEN: true | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- name: Validate Gradle Wrapper | |
uses: gradle/wrapper-validation-action@27152f6fa06a6b8062ef7195c795692e51fc2c81 # v2 | |
- name: Set up JDK | |
uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 # v4 | |
with: | |
java-version: 17 | |
distribution: temurin | |
- id: get-changed-files | |
name: Get changed files | |
uses: Ana06/get-changed-files@e0c398b7065a8d84700c471b6afc4116d1ba4e96 # v2.2.0 | |
- id: parse-changed-files | |
name: Parse changed files | |
run: | | |
isIndividualChanged=0 | |
isMultisrcChanged=0 | |
for changedFile in ${{ steps.get-changed-files.outputs.all }}; do | |
if [[ ${changedFile} == src/* ]]; then | |
isIndividualChanged=1 | |
elif [[ ${changedFile} == multisrc/* ]]; then | |
isMultisrcChanged=1 | |
elif [[ ${changedFile} == .github/workflows/issue_moderator.yml ]]; then | |
true | |
elif [[ ${changedFile} == *.md ]]; then | |
true | |
else | |
isIndividualChanged=1 | |
isMultisrcChanged=1 | |
break | |
fi | |
done | |
echo "isIndividualChanged=$isIndividualChanged" >> $GITHUB_OUTPUT | |
echo "isMultisrcChanged=$isMultisrcChanged" >> $GITHUB_OUTPUT | |
- name: Set up Gradle | |
uses: gradle/actions/setup-gradle@ec92e829475ac0c2315ea8f9eced72db85bb337a # v3 | |
- name: Generate multisrc sources | |
if: ${{ steps.parse-changed-files.outputs.isMultisrcChanged == '1' }} | |
run: ./gradlew :multisrc:generateExtensions | |
- name: Get number of modules | |
run: | | |
set -x | |
./gradlew -q projects | grep '.*extensions\:\(individual\|multisrc\)\:.*\:.*' > projects.txt | |
echo "NUM_INDIVIDUAL_MODULES=$(cat projects.txt | grep '.*\:individual\:.*' | wc -l)" >> $GITHUB_ENV | |
echo "NUM_MULTISRC_MODULES=$(cat projects.txt | grep '.*\:multisrc\:.*' | wc -l)" >> $GITHUB_ENV | |
- id: generate-matrices | |
name: Create output matrices | |
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7 | |
with: | |
script: | | |
const numIndividualModules = process.env.NUM_INDIVIDUAL_MODULES; | |
const numMultisrcModules = process.env.NUM_MULTISRC_MODULES; | |
const chunkSize = process.env.CI_CHUNK_SIZE; | |
const numIndividualChunks = Math.ceil(numIndividualModules / chunkSize); | |
const numMultisrcChunks = Math.ceil(numMultisrcModules / chunkSize); | |
console.log(`Individual modules: ${numIndividualModules} (${numIndividualChunks} chunks of ${chunkSize})`); | |
console.log(`Multi-source modules: ${numMultisrcModules} (${numMultisrcChunks} chunks of ${chunkSize})`); | |
core.setOutput('individualMatrix', { 'chunk': [...Array(numIndividualChunks).keys()] }); | |
core.setOutput('multisrcMatrix', { 'chunk': [...Array(numMultisrcChunks).keys()] }); | |
build_multisrc: | |
name: Build multisrc modules | |
needs: prepare | |
if: ${{ needs.prepare.outputs.isMultisrcChanged == '1' }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: ${{ fromJSON(needs.prepare.outputs.multisrcMatrix) }} | |
steps: | |
- name: Checkout PR | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- name: Set up JDK | |
uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 # v4 | |
with: | |
java-version: 17 | |
distribution: temurin | |
- name: Set up Gradle | |
uses: gradle/actions/setup-gradle@ec92e829475ac0c2315ea8f9eced72db85bb337a # v3 | |
with: | |
cache-read-only: true | |
- name: Generate sources from the multi-source library | |
env: | |
CI_MODULE_GEN: "true" | |
run: ./gradlew :multisrc:generateExtensions | |
- name: Build extensions (chunk ${{ matrix.chunk }}) | |
env: | |
CI_MULTISRC: "true" | |
CI_CHUNK_NUM: ${{ matrix.chunk }} | |
run: ./gradlew assembleDebug | |
build_individual: | |
name: Build individual modules | |
needs: prepare | |
if: ${{ needs.prepare.outputs.isIndividualChanged == '1' }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: ${{ fromJSON(needs.prepare.outputs.individualMatrix) }} | |
steps: | |
- name: Checkout PR | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- name: Set up JDK | |
uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 # v4 | |
with: | |
java-version: 17 | |
distribution: temurin | |
- name: Set up Gradle | |
uses: gradle/actions/setup-gradle@ec92e829475ac0c2315ea8f9eced72db85bb337a # v3 | |
with: | |
cache-read-only: true | |
- name: Build extensions (chunk ${{ matrix.chunk }}) | |
env: | |
CI_MULTISRC: "false" | |
CI_CHUNK_NUM: ${{ matrix.chunk }} | |
run: ./gradlew assembleDebug |