stable #3407
This file contains hidden or 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: stable-linux | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| checkout_pr: | |
| type: string | |
| description: Checkout PR | |
| repository_dispatch: | |
| types: [stable] | |
| push: | |
| branches: [ master ] | |
| paths-ignore: | |
| - '**/*.md' | |
| pull_request: | |
| branches: [ master ] | |
| paths-ignore: | |
| - '**/*.md' | |
| env: | |
| ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true | |
| APP_NAME: VSCodium | |
| ASSETS_REPOSITORY: ${{ github.repository }} | |
| BINARY_NAME: codium | |
| DISABLE_UPDATE: 'yes' | |
| OS_NAME: linux | |
| VERSIONS_REPOSITORY: ${{ github.repository_owner }}/versions | |
| VSCODE_QUALITY: stable | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: btwiuse/arch:vscode-base | |
| outputs: | |
| MS_COMMIT: ${{ env.MS_COMMIT }} | |
| MS_TAG: ${{ env.MS_TAG }} | |
| RELEASE_VERSION: ${{ env.RELEASE_VERSION }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ env.GITHUB_BRANCH }} | |
| - name: Set safe directory | |
| run: git config --global --add safe.directory ${{ github.workspace }} | |
| - name: Switch to relevant branch | |
| env: | |
| PULL_REQUEST_ID: ${{ github.event.inputs.checkout_pr }} | |
| run: ./get_pr.sh | |
| - name: Clone VSCode repo | |
| run: ./get_repo.sh | |
| - name: Check PR or cron | |
| env: | |
| GENERATE_ASSETS: true | |
| run: ./check_cron_or_pr.sh | |
| - name: Check existing VSCodium tags/releases | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| CHECK_ALL: 'yes' | |
| run: ./check_tags.sh | |
| compile: | |
| needs: | |
| - check | |
| runs-on: ubuntu-latest | |
| container: | |
| image: btwiuse/arch:vscode-base | |
| env: | |
| MS_COMMIT: ${{ needs.check.outputs.MS_COMMIT }} | |
| MS_TAG: ${{ needs.check.outputs.MS_TAG }} | |
| RELEASE_VERSION: ${{ needs.check.outputs.RELEASE_VERSION }} | |
| VSCODE_ARCH: 'x64' | |
| outputs: | |
| BUILD_SOURCEVERSION: ${{ env.BUILD_SOURCEVERSION }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ env.GITHUB_BRANCH }} | |
| - name: Set safe directory | |
| run: git config --global --add safe.directory ${{ github.workspace }} | |
| - name: Switch to relevant branch | |
| env: | |
| PULL_REQUEST_ID: ${{ github.event.inputs.checkout_pr }} | |
| run: ./get_pr.sh | |
| - name: Clone VSCode repo | |
| run: ./get_repo.sh | |
| - name: Build | |
| env: | |
| SHOULD_BUILD_REH: 'no' | |
| SHOULD_BUILD_REH_WEB: 'no' | |
| run: ./build.sh | |
| - name: Compress vscode artifact | |
| run: | | |
| find vscode -type f -not -path "*/node_modules/*" -not -path "vscode/.build/node/*" -not -path "vscode/.git/*" > vscode.txt | |
| # echo "vscode/.build/extensions/node_modules" >> vscode.txt | |
| echo "vscode/.git" >> vscode.txt | |
| tar -czf vscode.tar.gz -T vscode.txt | |
| - name: Upload vscode artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: vscode | |
| path: ./vscode.tar.gz | |
| retention-days: 30 | |
| reh_linux: | |
| needs: | |
| - check | |
| # - compile | |
| runs-on: ubuntu-latest | |
| container: | |
| image: btwiuse/arch:vscode-base | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - slug: X64 | |
| vscode_arch: x64 | |
| - slug: ARM64 | |
| vscode_arch: arm64 | |
| env: | |
| # BUILD_SOURCEVERSION: ${{ needs.compile.outputs.BUILD_SOURCEVERSION }} | |
| MS_COMMIT: ${{ needs.check.outputs.MS_COMMIT }} | |
| MS_TAG: ${{ needs.check.outputs.MS_TAG }} | |
| RELEASE_VERSION: ${{ needs.check.outputs.RELEASE_VERSION }} | |
| VSCODE_ARCH: ${{ matrix.vscode_arch }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ env.GITHUB_BRANCH }} | |
| - name: Set safe directory | |
| run: git config --global --add safe.directory ${{ github.workspace }} | |
| - name: Switch to relevant branch | |
| env: | |
| PULL_REQUEST_ID: ${{ github.event.inputs.checkout_pr }} | |
| run: ./get_pr.sh | |
| - name: Check existing VSCodium tags/releases | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| CHECK_ONLY_REH: 'yes' | |
| run: ./check_tags.sh | |
| - name: Clone VSCode repo | |
| run: ./get_repo.sh | |
| - name: Build | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: ./package_linux_reh.sh | |
| - name: Release | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| GITHUB_USERNAME: ${{ github.repository_owner }} | |
| run: ./release.sh | |
| - name: Upload assets | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: reh-linux-${{ matrix.vscode_arch }} | |
| path: assets/ | |
| retention-days: 30 | |
| web: | |
| needs: | |
| - check | |
| # - compile | |
| runs-on: ubuntu-latest | |
| container: | |
| image: btwiuse/arch:vscode-base | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - slug: X64 | |
| vscode_arch: x64 | |
| env: | |
| # BUILD_SOURCEVERSION: ${{ needs.compile.outputs.BUILD_SOURCEVERSION }} | |
| MS_COMMIT: ${{ needs.check.outputs.MS_COMMIT }} | |
| MS_TAG: ${{ needs.check.outputs.MS_TAG }} | |
| RELEASE_VERSION: ${{ needs.check.outputs.RELEASE_VERSION }} | |
| VSCODE_ARCH: ${{ matrix.vscode_arch }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ env.GITHUB_BRANCH }} | |
| - name: Set safe directory | |
| run: git config --global --add safe.directory ${{ github.workspace }} | |
| - name: Switch to relevant branch | |
| env: | |
| PULL_REQUEST_ID: ${{ github.event.inputs.checkout_pr }} | |
| run: ./get_pr.sh | |
| - name: Check existing VSCodium tags/releases | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| CHECK_ONLY_REH: 'yes' | |
| run: ./check_tags.sh | |
| - name: Clone VSCode repo | |
| run: ./get_repo.sh | |
| - name: Build | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: ./package_web.sh | |
| - name: Release | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| GITHUB_USERNAME: ${{ github.repository_owner }} | |
| run: ./release.sh | |
| - name: Upload assets | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: web | |
| path: assets/ | |
| retention-days: 30 |