Skip to content
Merged
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
14 changes: 1 addition & 13 deletions .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: ""
Expand Down
9 changes: 2 additions & 7 deletions .github/workflows/develop-Windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -369,4 +364,4 @@ jobs:
exit 1
}



4 changes: 2 additions & 2 deletions installer/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion installer/tools/installer.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ function Check-SDKVersion-Valid(){
[string]$sdkversion
)
try {
$response = Invoke-WebRequest -Uri "https://github.com/$repositoryName/releases/tag/$sdkversion" -ErrorAction Stop
$response = Invoke-WebRequest -Uri "https://github.com/$repositoryName/releases/tag/$sdkversion" -UseBasicParsing -ErrorAction Stop
if ($response.StatusCode -ne 200){
Write-Error "Version $sdkversion does not exist"
exit 1
Expand Down
Loading