123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303 |
- name: insider-windows
- on:
- workflow_dispatch:
- inputs:
- force_version:
- type: boolean
- description: Force update version
- generate_assets:
- type: boolean
- description: Generate assets
- checkout_pr:
- type: string
- description: Checkout PR
- repository_dispatch:
- types: [insider]
- push:
- branches: [ insider ]
- paths-ignore:
- - '**/*.md'
- - 'upstream/*.json'
- pull_request:
- branches: [ insider ]
- paths-ignore:
- - '**/*.md'
- env:
- APP_NAME: VSCodium
- ASSETS_REPOSITORY: ${{ github.repository }}-insiders
- BINARY_NAME: codium-insiders
- GITHUB_BRANCH: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || 'insider' }}
- GH_REPO_PATH: ${{ github.repository }}
- ORG_NAME: ${{ github.repository_owner }}
- OS_NAME: windows
- VERSIONS_REPOSITORY: ${{ github.repository_owner }}/versions
- VSCODE_QUALITY: insider
- jobs:
- check:
- runs-on: ubuntu-latest
- outputs:
- MS_COMMIT: ${{ env.MS_COMMIT }}
- MS_TAG: ${{ env.MS_TAG }}
- RELEASE_VERSION: ${{ env.RELEASE_VERSION }}
- SHOULD_BUILD: ${{ env.SHOULD_BUILD }}
- SHOULD_DEPLOY: ${{ env.SHOULD_DEPLOY }}
- steps:
- - uses: actions/checkout@v4
- with:
- ref: ${{ env.GITHUB_BRANCH }}
- - 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: ${{ github.event.inputs.generate_assets }}
- 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-22.04
- env:
- MS_COMMIT: ${{ needs.check.outputs.MS_COMMIT }}
- MS_TAG: ${{ needs.check.outputs.MS_TAG }}
- RELEASE_VERSION: ${{ needs.check.outputs.RELEASE_VERSION }}
- SHOULD_BUILD: ${{ (needs.check.outputs.SHOULD_BUILD == 'yes' || github.event.inputs.generate_assets == 'true') && 'yes' || 'no' }}
- VSCODE_ARCH: 'x64'
- outputs:
- BUILD_SOURCEVERSION: ${{ env.BUILD_SOURCEVERSION }}
- steps:
- - uses: actions/checkout@v4
- with:
- ref: ${{ env.GITHUB_BRANCH }}
- if: env.SHOULD_BUILD == 'yes'
- - name: Switch to relevant branch
- env:
- PULL_REQUEST_ID: ${{ github.event.inputs.checkout_pr }}
- run: ./get_pr.sh
- - name: Setup GCC
- uses: egor-tensin/setup-gcc@v1
- with:
- version: 10
- platform: x64
- - name: Setup Node.js environment
- uses: actions/setup-node@v4
- with:
- node-version: '20.19.0'
- if: env.SHOULD_BUILD == 'yes'
- - name: Setup Python 3
- uses: actions/setup-python@v5
- with:
- python-version: '3.11'
- if: env.SHOULD_BUILD == 'yes'
- - name: Install libkrb5-dev
- run: sudo apt-get update -y && sudo apt-get install -y libkrb5-dev
- if: env.SHOULD_BUILD == 'yes'
- - name: Clone VSCode repo
- run: ./get_repo.sh
- if: env.SHOULD_BUILD == 'yes'
- - name: Build
- env:
- SHOULD_BUILD_REH: 'no'
- SHOULD_BUILD_REH_WEB: 'no'
- run: ./build.sh
- if: env.SHOULD_BUILD == 'yes'
- - 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
- if: env.SHOULD_BUILD == 'yes'
- - name: Upload vscode artifact
- uses: actions/upload-artifact@v4
- with:
- name: vscode
- path: ./vscode.tar.gz
- retention-days: ${{ needs.check.outputs.SHOULD_DEPLOY == 'yes' && 30 || 1 }}
- if: env.SHOULD_BUILD == 'yes'
- build:
- needs:
- - check
- - compile
- runs-on: windows-2019
- strategy:
- fail-fast: false
- matrix:
- vscode_arch:
- - x64
- - arm64
- defaults:
- run:
- shell: bash
- 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 }}
- SHOULD_BUILD: ${{ (needs.check.outputs.SHOULD_BUILD == 'yes' || github.event.inputs.generate_assets == 'true') && 'yes' || 'no' }}
- SHOULD_DEPLOY: ${{ needs.check.outputs.SHOULD_DEPLOY }}
- VSCODE_ARCH: ${{ matrix.vscode_arch }}
- outputs:
- RELEASE_VERSION: ${{ env.RELEASE_VERSION }}
- SHOULD_DEPLOY: ${{ env.SHOULD_DEPLOY }}
- steps:
- - uses: actions/checkout@v4
- with:
- ref: ${{ env.GITHUB_BRANCH }}
- if: env.SHOULD_BUILD == 'yes'
- - name: Switch to relevant branch
- env:
- PULL_REQUEST_ID: ${{ github.event.inputs.checkout_pr }}
- run: ./get_pr.sh
- if: env.SHOULD_BUILD == 'yes'
- - name: Setup Node.js environment
- uses: actions/setup-node@v4
- with:
- node-version: '20.19.0'
- if: env.SHOULD_BUILD == 'yes'
- - name: Setup Python 3
- uses: actions/setup-python@v5
- with:
- python-version: '3.11'
- if: env.SHOULD_BUILD == 'yes'
- - name: Check existing VSCodium tags/releases
- env:
- DISABLE_MSI: ${{ vars.DISABLE_INSIDER_MSI }}
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: ./check_tags.sh
- if: env.SHOULD_BUILD == 'yes'
- - name: Download vscode artifact
- uses: actions/download-artifact@v4
- with:
- name: vscode
- if: env.SHOULD_BUILD == 'yes'
- - name: Build
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- npm_config_arch: ${{ matrix.vscode_arch }}
- npm_config_target_arch: ${{ matrix.vscode_arch }}
- run: ./build/windows/package.sh
- if: env.SHOULD_BUILD == 'yes'
- - name: Prepare assets
- run: ./prepare_assets.sh
- if: env.SHOULD_BUILD == 'yes' && (env.SHOULD_DEPLOY == 'yes' || github.event.inputs.generate_assets == 'true')
- - name: Upload unsigned artifacts
- id: upload-unsigned-artifacts
- uses: actions/upload-artifact@v4
- with:
- name: unsigned-${{ matrix.vscode_arch }}
- path: |
- assets/*.exe
- assets/*.msi
- retention-days: 1
- if: env.SHOULD_BUILD == 'yes' && vars.DISABLE_INSIDER_WINDOWS_SIGNING != 'yes' && (env.SHOULD_DEPLOY == 'yes' || github.event.inputs.generate_assets == 'true')
- - name: Signing
- uses: signpath/github-action-submit-signing-request@v1
- with:
- api-token: ${{ secrets.SIGNPATH_API_TOKEN }}
- organization-id: ${{ secrets.SIGNPATH_ORGANIZATION_ID }}
- project-slug: ${{ secrets.SIGNPATH_PROJECT_SLUG }}
- signing-policy-slug: ${{ secrets.SIGNPATH_POLICY_SLUG }}
- github-artifact-id: ${{ steps.upload-unsigned-artifacts.outputs.artifact-id }}
- artifact-configuration-slug: ${{ matrix.vscode_arch }}
- wait-for-completion: true
- # 3h to manually approve the request
- wait-for-completion-timeout-in-seconds: 10800
- output-artifact-directory: assets/
- if: env.SHOULD_BUILD == 'yes' && vars.DISABLE_INSIDER_WINDOWS_SIGNING != 'yes' && (env.SHOULD_DEPLOY == 'yes' || github.event.inputs.generate_assets == 'true')
- - name: Prepare checksums
- run: ./prepare_checksums.sh
- if: env.SHOULD_BUILD == 'yes' && (env.SHOULD_DEPLOY == 'yes' || github.event.inputs.generate_assets == 'true')
- - name: Release
- env:
- GITHUB_TOKEN: ${{ secrets.STRONGER_GITHUB_TOKEN }}
- GITHUB_USERNAME: ${{ github.repository_owner }}
- run: ./release.sh
- if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
- - name: Update versions repo
- env:
- FORCE_UPDATE: ${{ github.event.inputs.force_version }}
- GITHUB_TOKEN: ${{ secrets.STRONGER_GITHUB_TOKEN }}
- GITHUB_USERNAME: ${{ github.repository_owner }}
- run: ./update_version.sh
- if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
- - name: Upload assets
- uses: actions/upload-artifact@v4
- with:
- name: bin-${{ matrix.vscode_arch }}
- path: assets/
- retention-days: 3
- if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'no' && github.event.inputs.generate_assets == 'true'
- winget:
- needs: build
- runs-on: windows-latest
- defaults:
- run:
- shell: bash
- env:
- APP_IDENTIFIER: VSCodium.VSCodium.Insiders
- ASSETS_REPOSITORY: vscodium-insiders
- if: needs.build.outputs.SHOULD_DEPLOY == 'yes'
- steps:
- - uses: actions/checkout@v4
- with:
- ref: ${{ env.GITHUB_BRANCH }}
- - name: Check version
- run: ./stores/winget/check_version.sh
- env:
- RELEASE_VERSION: ${{ needs.build.outputs.RELEASE_VERSION }}
- - name: Release to WinGet
- uses: vedantmgoyal9/winget-releaser@main
- with:
- identifier: ${{ env.APP_IDENTIFIER }}
- version: ${{ env.RELEASE_VERSION }}
- release-repository: ${{ env.ASSETS_REPOSITORY }}
- release-tag: ${{ env.RELEASE_VERSION }}-insider
- installers-regex: '\.exe$' # only .exe files
- token: ${{ secrets.STRONGER_GITHUB_TOKEN }}
- if: env.SHOULD_DEPLOY == 'yes'
|