From 7b4a63e79b8c506058bf99993be25d4ecc5dafcb Mon Sep 17 00:00:00 2001 From: Xinyu Li Date: Thu, 26 Feb 2026 00:22:50 -0800 Subject: [PATCH 1/6] fix version --- installer/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/installer/config.yml b/installer/config.yml index 00560c74..bc79aedf 100644 --- a/installer/config.yml +++ b/installer/config.yml @@ -13,9 +13,9 @@ libraries: ion_kit: name: ion-kit - pkg_sha: "f99f81f9f415241c0327b983473583e8ae20ab187e9d6a5aebc1e74f38955ecf" + pkg_sha: "6152924b797a532562ca9d0c05f81930f8796f924a3395232546faf958af6701" git_repo: "https://github.com/fixstars/ion-kit.git" - version: "v3.2.7" + version: "v3.2.8" opencv: name: opencv From 544a4559a64f60cef21e13ab667c65d0ce07f9b9 Mon Sep 17 00:00:00 2001 From: Xinyu Li Date: Thu, 26 Feb 2026 05:20:27 -0800 Subject: [PATCH 2/6] remove 2019 --- .github/workflows/Release.yml | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/.github/workflows/Release.yml b/.github/workflows/Release.yml index 2eb977a8..fa9554de 100644 --- a/.github/workflows/Release.yml +++ b/.github/workflows/Release.yml @@ -203,29 +203,17 @@ jobs: strategy: matrix: - os: [windows-2019, windows-latest] + os: [windows-latest] version : ["-version ${{ needs.set_env.outputs.ref_name }}", ""] with_openCV : ["", "-InstallOpenCV"] with_gst_option : ["", "-InstallGstTools", "-InstallGstTools -InstallGstPlugins"] include: # past version only supports full-option with the latest installer.ps1 # -InstallOpenCV is valid on v24.09 or later on windows-2022 - - os: windows-2019 - with_openCV: "-InstallOpenCV" - with_gst_option : "" - version: "-version ${{ needs.set_env.outputs.SENSING_DEV_V24_05 }}" - - os: windows-2019 - with_openCV: "-InstallOpenCV" - with_gst_option : "" - version: "-version ${{ needs.set_env.outputs.SENSING_DEV_V24_01 }}" - os: windows-2022 with_openCV: "-InstallOpenCV" with_gst_option : "" version: "-version ${{ needs.set_env.outputs.SENSING_DEV_V24_09 }}" - - os: windows-2019 - with_openCV: "-InstallOpenCV" - with_gst_option : "" - version: "-version ${{ needs.set_env.outputs.SENSING_DEV_V24_09 }}" exclude: # skip the following combination since the latest is v24.09 for now - version: "" From ec3e5e512739ec3cd3573395cb221b6f652d8d79 Mon Sep 17 00:00:00 2001 From: fixstars_xinyu <143661893+xinyuli1204@users.noreply.github.com> Date: Thu, 26 Feb 2026 05:43:26 -0800 Subject: [PATCH 3/6] remove 2019 --- .github/workflows/develop-Windows.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/develop-Windows.yml b/.github/workflows/develop-Windows.yml index 088a457a..bf1adede 100644 --- a/.github/workflows/develop-Windows.yml +++ b/.github/workflows/develop-Windows.yml @@ -70,7 +70,7 @@ jobs: strategy: matrix: - os: [windows-2019, windows-latest] + os: [windows-latest] install_option : ["-version ${{ needs.set_env.outputs.LATEST_RELEASED_SDK }}", "-configPath config_Windows.json"] with_openCV : ["", "-InstallOpenCV"] with_gst_option: ["", "-InstallGstTools", "-InstallGstTools -InstallGstPlugins"] @@ -369,4 +369,4 @@ jobs: exit 1 } - \ No newline at end of file + From 52058409fd053c34609a035a17cd4cfb18e4dfb8 Mon Sep 17 00:00:00 2001 From: fixstars_xinyu <143661893+xinyuli1204@users.noreply.github.com> Date: Thu, 26 Feb 2026 05:53:12 -0800 Subject: [PATCH 4/6] -UseBasicParsing? --- installer/tools/installer.ps1 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/installer/tools/installer.ps1 b/installer/tools/installer.ps1 index cd500383..f25cd015 100644 --- a/installer/tools/installer.ps1 +++ b/installer/tools/installer.ps1 @@ -241,8 +241,9 @@ function Check-SDKVersion-Valid(){ param( [string]$sdkversion ) - try { - $response = Invoke-WebRequest -Uri "https://github.com/$repositoryName/releases/tag/$sdkversion" -ErrorAction Stop + try { + $response = Invoke-WebRequest -Uri "https://github.com/$repositoryName/releases/tag/$sdkversion" -UseBasicParsing -ErrorAction Stop + if ($response.StatusCode -ne 200){ if ($response.StatusCode -ne 200){ Write-Error "Version $sdkversion does not exist" exit 1 From efcdbe151dedf37ceffbed828870dd25512ddd71 Mon Sep 17 00:00:00 2001 From: Xinyu Li Date: Thu, 26 Feb 2026 05:55:56 -0800 Subject: [PATCH 5/6] fix --- installer/tools/installer.ps1 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/installer/tools/installer.ps1 b/installer/tools/installer.ps1 index f25cd015..64cdfd2b 100644 --- a/installer/tools/installer.ps1 +++ b/installer/tools/installer.ps1 @@ -241,9 +241,8 @@ function Check-SDKVersion-Valid(){ param( [string]$sdkversion ) - try { + try { $response = Invoke-WebRequest -Uri "https://github.com/$repositoryName/releases/tag/$sdkversion" -UseBasicParsing -ErrorAction Stop - if ($response.StatusCode -ne 200){ if ($response.StatusCode -ne 200){ Write-Error "Version $sdkversion does not exist" exit 1 From 558ce118d82ecfc0948f3aae725d8cf0f75ab0aa Mon Sep 17 00:00:00 2001 From: Xinyu Li Date: Thu, 26 Feb 2026 06:04:43 -0800 Subject: [PATCH 6/6] remove winget since 2022 has pre winget installed --- .github/workflows/develop-Windows.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/develop-Windows.yml b/.github/workflows/develop-Windows.yml index bf1adede..58917586 100644 --- a/.github/workflows/develop-Windows.yml +++ b/.github/workflows/develop-Windows.yml @@ -232,11 +232,6 @@ jobs: with: python-version: ${{ matrix.python_version }} - - name: Setup winget - uses: Cyberboss/install-winget@v1 - with: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - name: Download All Artifacts uses: actions/download-artifact@v4 with: