Remove reduntdant changes and enable back to New Tab from library panel #32
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: CI Internal | |
on: | |
workflow_dispatch: # Allow manual triggers | |
pull_request: | |
push: | |
jobs: | |
check-secret: | |
name: secret-validator | |
runs-on: ubuntu-latest | |
outputs: | |
is-secret-set: ${{ steps.check-secret-set.outputs.is-secret-set }} | |
steps: | |
- name: check if the necessary secrets are set in github secrets | |
id: check-secret-set | |
env: | |
THIRD_PARTY_PAT: ${{ secrets.THIRD_PARTY_PAT }} | |
run: "echo \"is-secret-set=${{ env.THIRD_PARTY_PAT != '' }}\" >> $GITHUB_OUTPUT\n" | |
build-internal: | |
name: Internal Build | |
needs: [check-secret] | |
if: needs.check-secret.outputs.is-secret-set == 'true' | |
uses: ./.github/workflows/build.yml | |
with: | |
flavour: ${{ matrix.flavour }} | |
internal: true | |
strategy: | |
fail-fast: false | |
matrix: | |
flavour: [ | |
assembleOculusvrArm64GeckoMetaStore, | |
assembleHvrArm64GeckoGeneric, | |
assembleHvrArm64GeckoMainlandChina, | |
assemblePicoxrArm64GeckoGeneric, | |
assembleLynxArm64GeckoGeneric, | |
assembleSpacesArm64GeckoGeneric, | |
assembleAospX64GeckoGeneric, | |
assembleVisionGlassArm64GeckoGeneric, | |
] | |
secrets: inherit |