Skip to content

Commit 5e3df95

Browse files
ci: use LP ocl-dev account for CI builds on Ubuntu and Arch
Signed-off-by: Jacek Danecki <[email protected]> #90 Change-Id: I987f691dfe1258b7353ca1eda502994145babd5b
1 parent 95e4dc4 commit 5e3df95

11 files changed

+23
-23
lines changed

scripts/docker/Dockerfile-ubuntu-16.04-clang-4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ MAINTAINER Jacek Danecki <[email protected]>
33

44
COPY neo /root/neo
55

6-
RUN echo "deb http://ppa.launchpad.net/intel-opencl/intel-opencl/ubuntu xenial main" >> /etc/apt/sources.list; \
7-
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys B9732172C4830B8F; \
6+
RUN echo "deb http://ppa.launchpad.net/ocl-dev/intel-opencl/ubuntu xenial main" >> /etc/apt/sources.list; \
7+
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C3086B78CC05B8B1; \
88
apt-get -y update ; apt-get install -y --allow-unauthenticated cmake git pkg-config ninja-build intel-igc-opencl-dev clang-4.0
99
RUN cd /root; git clone --depth 1 https://github.com/intel/gmmlib gmmlib
1010
RUN mkdir /root/build; cd /root/build ; cmake -G Ninja -DBUILD_TYPE=Release -DCMAKE_BUILD_TYPE=Release \

scripts/docker/Dockerfile-ubuntu-16.04-clang-5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ MAINTAINER Jacek Danecki <[email protected]>
33

44
COPY neo /root/neo
55

6-
RUN echo "deb http://ppa.launchpad.net/intel-opencl/intel-opencl/ubuntu xenial main" >> /etc/apt/sources.list; \
7-
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys B9732172C4830B8F; \
6+
RUN echo "deb http://ppa.launchpad.net/ocl-dev/intel-opencl/ubuntu xenial main" >> /etc/apt/sources.list; \
7+
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C3086B78CC05B8B1; \
88
apt-get -y update ; apt-get install -y --allow-unauthenticated cmake git pkg-config ninja-build intel-igc-opencl-dev clang-5.0
99
RUN cd /root; git clone --depth 1 https://github.com/intel/gmmlib gmmlib
1010
RUN mkdir /root/build; cd /root/build ; cmake -G Ninja -DBUILD_TYPE=Release -DCMAKE_BUILD_TYPE=Release \

scripts/docker/Dockerfile-ubuntu-16.04-ppa-gcc-5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ MAINTAINER Jacek Danecki <[email protected]>
33

44
COPY neo /root/neo
55

6-
RUN echo "deb http://ppa.launchpad.net/intel-opencl/intel-opencl/ubuntu xenial main" >> /etc/apt/sources.list; \
7-
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys B9732172C4830B8F; \
6+
RUN echo "deb http://ppa.launchpad.net/ocl-dev/intel-opencl/ubuntu xenial main" >> /etc/apt/sources.list; \
7+
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C3086B78CC05B8B1; \
88
apt-get -y update ; apt-get install -y --allow-unauthenticated cmake g++-5 git pkg-config ninja-build intel-igc-opencl-dev
99
RUN cd /root; git clone --depth 1 https://github.com/intel/gmmlib gmmlib
1010
RUN mkdir /root/build; cd /root/build ; cmake -G Ninja -DBUILD_TYPE=Release -DCMAKE_BUILD_TYPE=Release \

scripts/docker/Dockerfile-ubuntu-18.04-clang-4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ MAINTAINER Jacek Danecki <[email protected]>
44
COPY neo /root/neo
55

66
RUN apt-get -y update ; apt-get install -y --allow-unauthenticated gpg; \
7-
echo "deb http://ppa.launchpad.net/intel-opencl/intel-opencl/ubuntu bionic main" >> /etc/apt/sources.list; \
8-
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys B9732172C4830B8F; \
7+
echo "deb http://ppa.launchpad.net/ocl-dev/intel-opencl/ubuntu bionic main" >> /etc/apt/sources.list; \
8+
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C3086B78CC05B8B1; \
99
apt-get -y update ; apt-get install -y --allow-unauthenticated cmake git pkg-config ninja-build intel-igc-opencl-dev clang-4.0
1010
RUN cd /root; git clone --depth 1 https://github.com/intel/gmmlib gmmlib
1111
RUN mkdir /root/build; cd /root/build ; cmake -G Ninja -DBUILD_TYPE=Release -DCMAKE_BUILD_TYPE=Release \

scripts/docker/Dockerfile-ubuntu-18.04-clang-5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ MAINTAINER Jacek Danecki <[email protected]>
44
COPY neo /root/neo
55

66
RUN apt-get -y update ; apt-get install -y --allow-unauthenticated gpg; \
7-
echo "deb http://ppa.launchpad.net/intel-opencl/intel-opencl/ubuntu bionic main" >> /etc/apt/sources.list; \
8-
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys B9732172C4830B8F; \
7+
echo "deb http://ppa.launchpad.net/ocl-dev/intel-opencl/ubuntu bionic main" >> /etc/apt/sources.list; \
8+
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C3086B78CC05B8B1; \
99
apt-get -y update ; apt-get install -y --allow-unauthenticated cmake git pkg-config ninja-build intel-igc-opencl-dev clang-5.0
1010
RUN cd /root; git clone --depth 1 https://github.com/intel/gmmlib gmmlib
1111
RUN mkdir /root/build; cd /root/build ; cmake -G Ninja -DBUILD_TYPE=Release -DCMAKE_BUILD_TYPE=Release \

scripts/docker/Dockerfile-ubuntu-18.04-clang-6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ MAINTAINER Jacek Danecki <[email protected]>
44
COPY neo /root/neo
55

66
RUN apt-get -y update ; apt-get install -y --allow-unauthenticated gpg; \
7-
echo "deb http://ppa.launchpad.net/intel-opencl/intel-opencl/ubuntu bionic main" >> /etc/apt/sources.list; \
8-
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys B9732172C4830B8F; \
7+
echo "deb http://ppa.launchpad.net/ocl-dev/intel-opencl/ubuntu bionic main" >> /etc/apt/sources.list; \
8+
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C3086B78CC05B8B1; \
99
apt-get -y update ; apt-get install -y --allow-unauthenticated cmake git pkg-config ninja-build intel-igc-opencl-dev clang-6.0
1010
RUN cd /root; git clone --depth 1 https://github.com/intel/gmmlib gmmlib
1111
RUN mkdir /root/build; cd /root/build ; cmake -G Ninja -DBUILD_TYPE=Release -DCMAKE_BUILD_TYPE=Release \

scripts/docker/Dockerfile-ubuntu-18.04-gcc-6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ MAINTAINER Jacek Danecki <[email protected]>
33

44
COPY neo /root/neo
55
RUN apt-get -y update ; apt-get install -y --allow-unauthenticated gpg; \
6-
echo "deb http://ppa.launchpad.net/intel-opencl/intel-opencl/ubuntu bionic main" >> /etc/apt/sources.list; \
7-
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys B9732172C4830B8F; \
6+
echo "deb http://ppa.launchpad.net/ocl-dev/intel-opencl/ubuntu bionic main" >> /etc/apt/sources.list; \
7+
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C3086B78CC05B8B1; \
88
apt-get -y update ; apt-get install -y --allow-unauthenticated cmake g++-6 git pkg-config ninja-build intel-igc-opencl-dev
99
RUN cd /root; git clone --depth 1 https://github.com/intel/gmmlib gmmlib
1010
RUN mkdir /root/build; cd /root/build ; cmake -G Ninja -DBUILD_TYPE=Release -DCMAKE_BUILD_TYPE=Release \

scripts/docker/Dockerfile-ubuntu-18.04-gcc-7

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ MAINTAINER Jacek Danecki <[email protected]>
33

44
COPY neo /root/neo
55
RUN apt-get -y update ; apt-get install -y --allow-unauthenticated gpg; \
6-
echo "deb http://ppa.launchpad.net/intel-opencl/intel-opencl/ubuntu bionic main" >> /etc/apt/sources.list; \
7-
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys B9732172C4830B8F; \
6+
echo "deb http://ppa.launchpad.net/ocl-dev/intel-opencl/ubuntu bionic main" >> /etc/apt/sources.list; \
7+
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C3086B78CC05B8B1; \
88
apt-get -y update ; apt-get install -y --allow-unauthenticated cmake g++-7 git pkg-config ninja-build intel-igc-opencl-dev
99
RUN cd /root; git clone --depth 1 https://github.com/intel/gmmlib gmmlib
1010
RUN mkdir /root/build; cd /root/build ; cmake -G Ninja -DBUILD_TYPE=Release -DCMAKE_BUILD_TYPE=Release \

scripts/docker/Dockerfile-ubuntu-18.04-ppa-gcc-5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ MAINTAINER Jacek Danecki <[email protected]>
33

44
COPY neo /root/neo
55
RUN apt-get -y update ; apt-get install -y --allow-unauthenticated gpg; \
6-
echo "deb http://ppa.launchpad.net/intel-opencl/intel-opencl/ubuntu bionic main" >> /etc/apt/sources.list; \
7-
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys B9732172C4830B8F; \
6+
echo "deb http://ppa.launchpad.net/ocl-dev/intel-opencl/ubuntu bionic main" >> /etc/apt/sources.list; \
7+
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C3086B78CC05B8B1; \
88
apt-get -y update ; apt-get install -y --allow-unauthenticated cmake g++-5 git pkg-config ninja-build intel-igc-opencl-dev
99
RUN cd /root; git clone --depth 1 https://github.com/intel/gmmlib gmmlib
1010
RUN mkdir /root/build; cd /root/build ; cmake -G Ninja -DBUILD_TYPE=Release -DCMAKE_BUILD_TYPE=Release \

scripts/install-deps.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ wait_apt() {
1212
sleep 5
1313
done
1414
}
15-
echo "deb http://ppa.launchpad.net/intel-opencl/intel-opencl/ubuntu xenial main" >> /etc/apt/sources.list
16-
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys B9732172C4830B8F
15+
echo "deb http://ppa.launchpad.net/ocl-dev/intel-opencl/ubuntu xenial main" >> /etc/apt/sources.list
16+
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C3086B78CC05B8B1
1717

1818
apt-get -y update
1919
if [ $? -ne 0 ]

0 commit comments

Comments
 (0)