diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 056b0570..9c2c6857 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -95,14 +95,13 @@ jobs: runs-on: ubuntu-latest # Build & test job should be run on: # - All Ubuntu versions officially supported by Zivid SDK - # - All Ubuntu versions newer than the latest LTS + # - All (not end-of-life) Ubuntu versions newer than the latest LTS # - The three latest Fedora releases that we can support strategy: matrix: os: - ubuntu:20.04 - ubuntu:22.04 - - ubuntu:22.10 - ubuntu:23.04 - fedora:35 - fedora:36 diff --git a/README.md b/README.md index dd5cac73..a40941dd 100644 --- a/README.md +++ b/README.md @@ -169,7 +169,6 @@ Please visit [Zivid Knowledge Base][zivid-knowledge-base-url] for general inform | Operating System | Python version | | :--------------- | :------------------------ | | Ubuntu 23.04 | 3.11 | -| Ubuntu 22.10 | 3.10 | | Ubuntu 22.04 | 3.10 | | Ubuntu 20.04 | 3.8 | | Fedora 37 | 3.11 | diff --git a/continuous-integration/linux/platform-dependent/ubuntu-22.10/setup.sh b/continuous-integration/linux/platform-dependent/ubuntu-22.10/setup.sh deleted file mode 100755 index 5961650b..00000000 --- a/continuous-integration/linux/platform-dependent/ubuntu-22.10/setup.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/bash - -export DEBIAN_FRONTEND=noninteractive -SCRIPT_DIR="$(realpath $(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) )" - -function apt-yes { - apt-get --assume-yes "$@" -} - -apt-yes update || exit $? -apt-yes dist-upgrade || exit $? - -apt-yes install \ - clinfo \ - g++ \ - jq \ - python3-dev \ - python3-venv \ - python3-pip \ - wget \ - || exit $? - -update-alternatives --install /usr/bin/python python /usr/bin/python3 0 || exit $? -update-alternatives --install /usr/bin/pip pip /usr/bin/pip3 0 || exit $? - -source $(realpath $SCRIPT_DIR/../common.sh) || exit $? -ubuntu_install_opencl_cpu_runtime || exit $? - -function install_www_deb { - TMP_DIR=$(mktemp --tmpdir --directory zivid-python-install-www-deb-XXXX) || exit $? - pushd $TMP_DIR || exit $? - wget -nv "$@" || exit $? - apt-yes install --fix-broken ./*deb || exit $? - popd || exit $? - rm -r $TMP_DIR || exit $? -} - -install_www_deb "https://downloads.zivid.com/sdk/releases/${ZIVID_SDK_EXACT_VERSION}/u22/zivid-telicam-driver_${ZIVID_TELICAM_EXACT_VERSION}_amd64.deb" || exit $? -install_www_deb "https://downloads.zivid.com/sdk/releases/${ZIVID_SDK_EXACT_VERSION}/u22/zivid_${ZIVID_SDK_EXACT_VERSION}_amd64.deb" || exit $? \ No newline at end of file