From 6e87bd83f8a78afa963c12a5ce7d2784b059b15c Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Fri, 8 Jan 2021 08:24:55 -0500 Subject: [PATCH 1/4] add buildkite pipeline --- .buildkite/pipeline.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .buildkite/pipeline.yml diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml new file mode 100644 index 00000000..40af426a --- /dev/null +++ b/.buildkite/pipeline.yml @@ -0,0 +1,18 @@ +steps: + - label: "Julia 1" + plugins: + - JuliaCI/julia#v0.6: + version: "1.5" + - JuliaCI/julia-test#v0.3: + # - JuliaCI/julia-coverage#v0.3: + # codecov: true + agents: + queue: "juliagpu" + cuda: "*" + timeout_in_minutes: 60 + # Don't run Buildkite if the commit message includes the text [skip tests] + if: build.message !~ /\[skip tests\]/ + +env: + JULIA_PKG_SERVER: "" # it often struggles with our large artifacts + # SECRET_CODECOV_TOKEN: "..." From bd13547574d58fdda887a93ce497191dc5b20879 Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Fri, 8 Jan 2021 10:30:24 -0500 Subject: [PATCH 2/4] Update pipeline.yml --- .buildkite/pipeline.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 40af426a..11971228 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -14,5 +14,6 @@ steps: if: build.message !~ /\[skip tests\]/ env: + GROUP: GPU JULIA_PKG_SERVER: "" # it often struggles with our large artifacts # SECRET_CODECOV_TOKEN: "..." From fe4e5303d34e4e7992115e4ae751a59fae35caf5 Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Fri, 8 Jan 2021 13:06:31 -0500 Subject: [PATCH 3/4] Delete .gitlab-ci.yml --- .gitlab-ci.yml | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 2be43c8c..00000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,16 +0,0 @@ -include: https://raw.githubusercontent.com/JuliaGPU/gitlab-ci/master/templates/v6.yml - -variables: - JULIA_NUM_THREADS: 4 - -.base: - extends: - - .julia:1 - - .test - tags: - - nvidia - -test-GPU: - extends: .base - variables: - GROUP: GPU From ad505bf1c4aeb98d89c2395d88f6f25ae3a1d06d Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Fri, 8 Jan 2021 13:45:17 -0500 Subject: [PATCH 4/4] Delete .travis.yml JuliaDiff is out of free Travis credits. --- .travis.yml | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 1024676f..00000000 --- a/.travis.yml +++ /dev/null @@ -1,22 +0,0 @@ -# Documentation: http://docs.travis-ci.com/user/languages/julia/ -language: julia -# avoid duplicate tests in PRs -branches: - only: - - master -os: - - linux -# - osx -julia: - - 1 - - nightly -matrix: - allow_failures: - - julia: nightly -notifications: - email: false -after_success: - - if [[ $TRAVIS_JULIA_VERSION = 1 ]] && [[ $TRAVIS_OS_NAME = linux ]]; then - julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'; - julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(process_folder())'; - fi