Skip to content

Commit

Permalink
Merge #1345
Browse files Browse the repository at this point in the history
1345: update for Cuda 2 r=CarloLucibello a=CarloLucibello

and mark as broken a cuda test on the `huber_loss` that was already failing on master (for reasons i do not understand)

Co-authored-by: Carlo Lucibello <carlo.lucibello@gmail.com>
  • Loading branch information
bors[bot] and CarloLucibello authored Nov 3, 2020
2 parents c5b0cec + f3aec7d commit e00322f
Show file tree
Hide file tree
Showing 6 changed files with 158 additions and 126 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
*.jl.cov
*.jl.*.cov
*.jl.mem
.vscode/
docs/build/
docs/site/
deps
# Manifest.toml
31 changes: 3 additions & 28 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -1,33 +1,8 @@
include:
- 'https://raw.githubusercontent.com/JuliaGPU/gitlab-ci/master/templates/v6.yml'
include: 'https://raw.githubusercontent.com/JuliaGPU/gitlab-ci/master/templates/v6.yml'

image: nvidia/cuda:10.1-cudnn7-devel-ubuntu18.04


# julia:1.0:
# extends:
# - .julia:1.0
# - .test
# tags:
# - nvidia
#
# julia:1.1:
# extends:
# - .julia:1.1
# - .test
# tags:
# - nvidia
#
# julia:1.2:
# extends:
# - .julia:1.2
# - .test
# tags:
# - nvidia

julia:1.4:
julia:1.5:
extends:
- .julia:1.4
- .julia:1.5
- .test
tags:
- nvidia
Expand Down
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ os:
# - osx

julia:
- 1.4
- 1
- 1.5
# - 1 # uncomment when 1.6 is out
- nightly

notifications:
Expand All @@ -16,7 +16,7 @@ notifications:
jobs:
include:
- stage: "Documentation"
julia: 1.3
julia: 1
os: linux
script:
- julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd()));
Expand Down
Loading

3 comments on commit e00322f

@CarloLucibello
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/24102

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.11.2 -m "<description of version>" e00322f1ccea1d8d2de0b8153dbe552548e481dc
git push origin v0.11.2

@racinmat
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It seems like it didn't pass because of The following dependencies do not have a [compat] entry that is upper-bounded and only includes a finite number of breaking releases: StatsBase.
Also, what exactly is the reason for dropping all these old versions in patch release?

Please sign in to comment.