From c24996fdb3a10c1b02396f4e7a99c720e46d103c Mon Sep 17 00:00:00 2001 From: jpekkila Date: Sat, 30 May 2020 16:45:08 +0000 Subject: [PATCH 1/4] Added a the official Kitware PPA for pulling the latest CMake when doing automated builds. --- bitbucket-pipelines.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index 58e5b81..e551fd3 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -19,6 +19,7 @@ pipelines: - step: script: # Modify the commands below to build your repository. - mkdir -p build && cd build + - apt-add-repository 'deb https://apt.kitware.com/ubuntu/ bionic main' - apt-get update - apt-get install -y cmake flex bison openmpi-bin libopenmpi-dev - cmake -DDSL_MODULE_DIR="acc/mhd_solver" -DBUILD_STANDALONE=ON -DBUILD_UTILS=ON -DBUILD_RT_VISUALIZATION=OFF -DBUILD_SAMPLES=ON -DDOUBLE_PRECISION=OFF -DMULTIGPU_ENABLED=ON -DMPI_ENABLED=OFF .. # Single precision From 95275df3f2d98737228a6db4b6025c6fe84eebce Mon Sep 17 00:00:00 2001 From: jpekkila Date: Sat, 30 May 2020 16:48:39 +0000 Subject: [PATCH 2/4] bitbucket-pipelines.yml edited online with Bitbucket --- bitbucket-pipelines.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index e551fd3..9fbf36c 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -19,6 +19,8 @@ pipelines: - step: script: # Modify the commands below to build your repository. - mkdir -p build && cd build + - apt-get update + - apt-get install -y apt-transport-https ca-certificates gnupg software-properties-common wget - apt-add-repository 'deb https://apt.kitware.com/ubuntu/ bionic main' - apt-get update - apt-get install -y cmake flex bison openmpi-bin libopenmpi-dev From f929b21ac020184d4a7ba714bd7e0fd3de21502b Mon Sep 17 00:00:00 2001 From: jpekkila Date: Sat, 30 May 2020 16:52:26 +0000 Subject: [PATCH 3/4] bitbucket-pipelines.yml edited online with Bitbucket --- bitbucket-pipelines.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index 9fbf36c..2f6266a 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -21,6 +21,7 @@ pipelines: - mkdir -p build && cd build - apt-get update - apt-get install -y apt-transport-https ca-certificates gnupg software-properties-common wget + - wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | gpg --dearmor - | sudo tee /etc/apt/trusted.gpg.d/kitware.gpg >/dev/null - apt-add-repository 'deb https://apt.kitware.com/ubuntu/ bionic main' - apt-get update - apt-get install -y cmake flex bison openmpi-bin libopenmpi-dev From 2ddeef22ac844842e938f0e44a2bd0462442020f Mon Sep 17 00:00:00 2001 From: jpekkila Date: Sat, 30 May 2020 16:58:45 +0000 Subject: [PATCH 4/4] bitbucket-pipelines.yml edited online with Bitbucket --- bitbucket-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index 2f6266a..e49d4f1 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -21,7 +21,7 @@ pipelines: - mkdir -p build && cd build - apt-get update - apt-get install -y apt-transport-https ca-certificates gnupg software-properties-common wget - - wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | gpg --dearmor - | sudo tee /etc/apt/trusted.gpg.d/kitware.gpg >/dev/null + - wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | gpg --dearmor - | tee /etc/apt/trusted.gpg.d/kitware.gpg >/dev/null - apt-add-repository 'deb https://apt.kitware.com/ubuntu/ bionic main' - apt-get update - apt-get install -y cmake flex bison openmpi-bin libopenmpi-dev