Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 30 additions & 1 deletion .github/actions/run-jetbrains-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ inputs:
ci-github-token:
description: "CI GitHub token for vscode extension build"
required: true
ffmpeg-version:
description: "FFmpeg release branch to install, must be one still published by BtbN/FFmpeg-Builds under its rolling 'latest' tag"
required: false
default: "8.1"

runs:
using: "composite"
Expand Down Expand Up @@ -41,10 +45,35 @@ runs:
distribution: zulu
java-version: 17

- name: Check FFmpeg artifact is available
shell: bash
env:
FFMPEG_VERSION: ${{ inputs.ffmpeg-version }}
run: |
asset="ffmpeg-n$FFMPEG_VERSION-latest-linux64-gpl-$FFMPEG_VERSION.tar.xz"
url="$GITHUB_SERVER_URL/BtbN/FFmpeg-Builds/releases/download/latest/$asset"
status=$(curl -sSIL --retry 3 --retry-connrefused --connect-timeout 10 \
--max-time 60 -o /dev/null -w '%{http_code}' "$url") || status=""
case "$status" in
2*) ;;
404)
echo "::error::FFmpeg $FFMPEG_VERSION is no longer published by BtbN/FFmpeg-Builds. Bump ffmpeg-version. Missing: $url"
exit 1
;;
""|000)
echo "::error::Could not reach $url to verify the FFmpeg artifact (network or DNS failure), so the pinned version was not checked."
exit 1
;;
*)
echo "::error::Unexpected HTTP $status when verifying the FFmpeg artifact at $url."
exit 1
;;
esac

- name: Setup FFmpeg
uses: AnimMouse/setup-ffmpeg@v1
with:
version: 7.1
version: ${{ inputs.ffmpeg-version }}
token: ${{ inputs.github-token }}

- name: Setup Gradle
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/auto-fix-failed-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
if: steps.workflow-details.outputs.has_failed_tests == 'true'
uses: actions/setup-node@v6
with:
node-version: "20"
node-version-file: ".nvmrc"

- name: Install Continue CLI globally
if: steps.workflow-details.outputs.has_failed_tests == 'true'
Expand Down
71 changes: 0 additions & 71 deletions .github/workflows/auto-release.yml

This file was deleted.

6 changes: 3 additions & 3 deletions .github/workflows/cli-pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 20
node-version-file: ".nvmrc"
cache: "npm"
cache-dependency-path: extensions/cli/package-lock.json

Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [18, 20, 22, 24]
node-version: [22, 24]
fail-fast: false
runs-on: ${{ matrix.os }}

Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 20
node-version-file: ".nvmrc"
cache: "npm"
cache-dependency-path: extensions/cli/package-lock.json

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/continue-agents.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '20'
node-version-file: ".nvmrc"

- name: Install Continue CLI
run: npm i -g @continuedev/cli
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: 20
node-version-file: ".nvmrc"
cache: npm
cache-dependency-path: docs-site/package-lock.json

Expand Down
Loading
Loading