mirror of
https://github.com/deepseek-ai/deepseek-harness
synced 2026-08-15 21:04:50 +00:00
Merge worktree/ci-native-windows-coverage-20260808 into worktree/ci-native-windows-multicore-20260809
This commit is contained in:
13
.github/workflows/ci.yml
vendored
13
.github/workflows/ci.yml
vendored
@@ -175,6 +175,8 @@ jobs:
|
||||
DSH_NODE_COMPAT_SKIP_TYPECHECK: '1'
|
||||
DSH_OXLINT_THREADS: '8'
|
||||
DSH_PUBLINT_CONCURRENCY: '8'
|
||||
DSH_GITHUB_REPOSITORY_PLUGIN_SOURCE: >-
|
||||
github:${{ github.event.pull_request.head.repo.full_name }}#${{ github.event.pull_request.head.sha }}&path:/apps/cli/tests/fixtures/github-repository-plugin/.dsh-plugin
|
||||
# Failover halves snapshot concurrency for the shared 64-core VM.
|
||||
DSH_SNAPSHOT_MAX_CONCURRENCY: ${{ vars.DSH_CI_FAILOVER == 'selfhosted' && github.event.pull_request.user.login != 'dependabot[bot]' && '12' || '32' }}
|
||||
steps:
|
||||
@@ -240,6 +242,17 @@ jobs:
|
||||
if: vars.DSH_CI_FAILOVER == 'selfhosted' && github.event.pull_request.user.login != 'dependabot[bot]'
|
||||
run: pnpm --filter @deepseek-ai/dsh-frontend exec playwright install chromium
|
||||
|
||||
- name: Configure private GitHub repository Plugin access
|
||||
env:
|
||||
DSH_GITHUB_SOURCE_TOKEN: ${{ github.token }}
|
||||
run: |
|
||||
source_config="$RUNNER_TEMP/dsh-github-source.gitconfig"
|
||||
basic_auth=$(printf 'x-access-token:%s' "$DSH_GITHUB_SOURCE_TOKEN" | base64 | tr -d '\n')
|
||||
git config --file "$source_config" url.https://github.com/.insteadOf git@github.com:
|
||||
git config --file "$source_config" --add url.https://github.com/.insteadOf ssh://git@github.com/
|
||||
git config --file "$source_config" http.https://github.com/.extraheader "AUTHORIZATION: basic $basic_auth"
|
||||
echo "GIT_CONFIG_GLOBAL=$source_config" >> "$GITHUB_ENV"
|
||||
|
||||
- name: Run compatibility, snapshot, and artifact gates
|
||||
run: pnpm run check:ci:consumers
|
||||
|
||||
|
||||
Reference in New Issue
Block a user