stop building on Ubuntu 19.10

Ubuntu 19.10 is EOL

Change-Id: I325d484593e411bb560976875f8bf5c02573b52e
Signed-off-by: Jacek Danecki <jacek.danecki@intel.com>
This commit is contained in:
Jacek Danecki
2020-08-24 17:22:13 +02:00
committed by sys_ocldev
parent 9394f5755e
commit a21e43b3ae
9 changed files with 5 additions and 94 deletions

View File

@@ -27,21 +27,6 @@ matrix:
- os: linux
compiler: gcc
env: BUILD_OS=ubuntu-18.04 COMPILER=gcc GEN=gen-12
- os: linux
compiler: clang
env: BUILD_OS=ubuntu-19.10 COMPILER=clang
- os: linux
compiler: gcc
env: BUILD_OS=ubuntu-19.10 COMPILER=gcc GEN=gen-8
- os: linux
compiler: gcc
env: BUILD_OS=ubuntu-19.10 COMPILER=gcc GEN=gen-9
- os: linux
compiler: gcc
env: BUILD_OS=ubuntu-19.10 COMPILER=gcc GEN=gen-11
- os: linux
compiler: gcc
env: BUILD_OS=ubuntu-19.10 COMPILER=gcc GEN=gen-12
- os: linux
compiler: clang
env: BUILD_OS=ubuntu-20.04 COMPILER=clang

View File

@@ -49,7 +49,7 @@ To allow NEO access to GPU device make sure user has permissions to files /dev/d
NEO is available for installation on a variety of Linux distributions
and can be installed via the distro's package manager.
For example on Ubuntu* 19.04, 19.10:
For example on Ubuntu* 20.04:
```
apt-get install intel-opencl-icd
@@ -108,4 +108,4 @@ for more details.
* [Interoperability with VTune](https://github.com/intel/compute-runtime/blob/master/opencl/doc/VTUNE.md)
* [OpenCL Conformance Tests](https://github.com/KhronosGroup/OpenCL-CTS/)
___(*) Other names and brands may be claimed as property of others.___
___(*) Other names and brands may be claimed as property of others.___

View File

@@ -37,7 +37,7 @@ zypper addrepo -r https://copr.fedorainfracloud.org/coprs/jdanecki/intel-opencl/
zypper install level-zero intel-level-zero-gpu
```
## Ubuntu* ppa for 18.04, 19.10, 20.04
## Ubuntu* ppa for 18.04, 20.04
```
add-apt-repository ppa:intel-opencl/intel-opencl

View File

@@ -77,7 +77,7 @@ zypper install intel-opencl
ipoldek install intel-gmmlib intel-graphics-compiler intel-compute-runtime
```
## Ubuntu* ppa for 18.04, 19.10, 20.04
## Ubuntu* ppa for 18.04, 20.04
```
add-apt-repository ppa:intel-opencl/intel-opencl
@@ -85,7 +85,7 @@ apt update
apt install intel-opencl-icd
```
## Ubuntu* 19.10, 20.04
## Ubuntu* 20.04
```
apt install intel-opencl-icd

View File

@@ -1,14 +0,0 @@
FROM docker.io/ubuntu:19.10
LABEL maintainer="jacek.danecki@intel.com"
COPY neo /root/neo
RUN apt-get -y update ; apt-get --no-install-recommends install -y --allow-unauthenticated gpg dirmngr gpg-agent; \
echo "deb http://ppa.launchpad.net/ocl-dev/intel-opencl/ubuntu eoan main" >> /etc/apt/sources.list; \
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C3086B78CC05B8B1; \
apt-get -y update ; apt-get --no-install-recommends install -y --allow-unauthenticated cmake pkg-config \
ninja-build libigc-dev intel-gmmlib-dev clang libze-loader-dev
RUN mkdir /root/build; cd /root/build ; cmake -G Ninja -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ \
-DDO_NOT_RUN_AUB_TESTS=1 -DDONT_CARE_OF_VIRTUALS=1 -DBUILD_WITH_L0=1 ../neo ; ninja -j `nproc`
CMD ["/bin/bash"]

View File

@@ -1,15 +0,0 @@
FROM docker.io/ubuntu:19.10
LABEL maintainer="jacek.danecki@intel.com"
COPY neo /root/neo
RUN apt-get -y update ; apt-get --no-install-recommends install -y --allow-unauthenticated gpg dirmngr gpg-agent; \
echo "deb http://ppa.launchpad.net/ocl-dev/intel-opencl/ubuntu eoan main" >> /etc/apt/sources.list; \
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C3086B78CC05B8B1; \
apt-get -y update ; apt-get --no-install-recommends install -y --allow-unauthenticated cmake g++ pkg-config \
ninja-build libigc-dev intel-gmmlib-dev libze-loader-dev
RUN mkdir /root/build; cd /root/build ; cmake -G Ninja -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ \
-DSUPPORT_GEN8=0 -DSUPPORT_GEN9=0 -DSUPPORT_GEN11=1 -DSUPPORT_GEN12LP=0 \
-DBUILD_WITH_L0=1 ../neo; \
ninja -j `nproc`
CMD ["/bin/bash"]

View File

@@ -1,15 +0,0 @@
FROM docker.io/ubuntu:19.10
LABEL maintainer="jacek.danecki@intel.com"
COPY neo /root/neo
RUN apt-get -y update ; apt-get --no-install-recommends install -y --allow-unauthenticated gpg dirmngr gpg-agent; \
echo "deb http://ppa.launchpad.net/ocl-dev/intel-opencl/ubuntu eoan main" >> /etc/apt/sources.list; \
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C3086B78CC05B8B1; \
apt-get -y update ; apt-get --no-install-recommends install -y --allow-unauthenticated cmake g++ pkg-config \
ninja-build libigc-dev intel-gmmlib-dev libze-loader-dev
RUN mkdir /root/build; cd /root/build ; cmake -G Ninja -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ \
-DSUPPORT_GEN8=0 -DSUPPORT_GEN9=0 -DSUPPORT_GEN11=0 -DSUPPORT_GEN12LP=1 \
-DBUILD_WITH_L0=1 ../neo; \
ninja -j `nproc`
CMD ["/bin/bash"]

View File

@@ -1,15 +0,0 @@
FROM docker.io/ubuntu:19.10
LABEL maintainer="jacek.danecki@intel.com"
COPY neo /root/neo
RUN apt-get -y update ; apt-get --no-install-recommends install -y --allow-unauthenticated gpg dirmngr gpg-agent; \
echo "deb http://ppa.launchpad.net/ocl-dev/intel-opencl/ubuntu eoan main" >> /etc/apt/sources.list; \
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C3086B78CC05B8B1; \
apt-get -y update ; apt-get --no-install-recommends install -y --allow-unauthenticated cmake g++ pkg-config \
ninja-build libigc-dev intel-gmmlib-dev
RUN mkdir /root/build; cd /root/build ; cmake -G Ninja -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ \
-DSUPPORT_GEN8=1 -DSUPPORT_GEN9=0 -DSUPPORT_GEN11=0 -DSUPPORT_GEN12LP=0 \
-DBUILD_WITH_L0=0 ../neo; \
ninja -j `nproc`
CMD ["/bin/bash"]

View File

@@ -1,15 +0,0 @@
FROM docker.io/ubuntu:19.10
LABEL maintainer="jacek.danecki@intel.com"
COPY neo /root/neo
RUN apt-get -y update ; apt-get --no-install-recommends install -y --allow-unauthenticated gpg dirmngr gpg-agent; \
echo "deb http://ppa.launchpad.net/ocl-dev/intel-opencl/ubuntu eoan main" >> /etc/apt/sources.list; \
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C3086B78CC05B8B1; \
apt-get -y update ; apt-get --no-install-recommends install -y --allow-unauthenticated cmake g++ pkg-config \
ninja-build libigc-dev intel-gmmlib-dev libze-loader-dev
RUN mkdir /root/build; cd /root/build ; cmake -G Ninja -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ \
-DSUPPORT_GEN8=0 -DSUPPORT_GEN9=1 -DSUPPORT_GEN11=0 -DSUPPORT_GEN12LP=0 \
-DBUILD_WITH_L0=1 ../neo; \
ninja -j `nproc`
CMD ["/bin/bash"]