Skip to content

Commit

Permalink
Merge pull request JuliaLang#4852 from JuliaLang/sf/statussite
Browse files Browse the repository at this point in the history
Enable reporting to status.julialang.org
  • Loading branch information
staticfloat committed Nov 19, 2013
2 parents c4fb399 + f80cd8f commit cef00c1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ notifications:
on_failure: always
webhooks:
urls:
- http:https://status.julialang.org/put/travis
- http:https://criid.ee.washington.edu:8000/travis-hook
- http:https://julia.mit.edu:8000/travis-hook
on_failure: never
before_install:
- BUILDOPTS="LLVM_CONFIG=llvm-config-3.3 VERBOSE=1 USE_BLAS64=0"; for lib in LLVM ZLIB SUITESPARSE ARPACK BLAS FFTW LAPACK GMP MPFR PCRE LIBUNWIND READLINE GRISU OPENLIBM RMATH; do export BUILDOPTS="$BUILDOPTS USE_SYSTEM_$lib=1"; done
- sudo apt-get update -qq -y
Expand Down
1 change: 1 addition & 0 deletions test/perf/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ codespeed:
# @$(call spawn,$(JULIA_EXECUTABLE)) blas/perf.jl codespeed
# @$(call spawn,$(JULIA_EXECUTABLE)) lapack/perf.jl codespeed
# @$(call spawn,$(JULIA_EXECUTABLE)) sort/perf.jl codespeed
@$(call spawn,$(JULIA_EXECUTABLE)) report.jl


clean:
Expand Down
7 changes: 7 additions & 0 deletions test/perf/report.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
using HTTPClient.HTTPC

env_name = chomp(readall(`hostname`))
commit = Base.BUILD_INFO.commit
flavor = ENV["JULIA_FLAVOR"]
json = "{\"env\": \"$env_name\", \"blas\":\"$flavor\", \"commit\":\"$commit\"}"
post("http:https://status.julialang.org/put/codespeed", json )

0 comments on commit cef00c1

Please sign in to comment.