Skip to content
This repository has been archived by the owner on Apr 28, 2021. It is now read-only.

Commit

Permalink
fix travis + tarballs
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonDanisch committed Jan 31, 2019
1 parent 6785e79 commit 094b15f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ sudo: required

# Before anything else, get the latest versions of things
before_script:
- julia -e 'import Pkg; Pkg.add(Pkg.PackageSpec(url="https://github.com/JuliaPackaging/BinaryBuilder.jl", rev="master"))'
- julia -e 'import Pkg; Pkg.add("BinaryProvider")'
- julia -e 'using Pkg; pkg"add BinaryBuilder BinaryProvider"'

script:
- julia build_tarballs.jl
Expand Down
9 changes: 4 additions & 5 deletions build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
# `julia build_tarballs.jl --help` to see a usage message.
using BinaryBuilder

version = v"3.2.1"

# Collection of sources required to build glfw
sources = [
"https://github.com/glfw/glfw.git" =>
Expand Down Expand Up @@ -34,10 +36,7 @@ products(prefix) = [
]

# Dependencies that must be installed before this package can be built
dependencies = [

]
dependencies = []

# Build the tarballs, and possibly a `build.jl` as well.
build_tarballs(ARGS, "glfw", sources, script, platforms, products, dependencies)

build_tarballs(ARGS, "glfw", version, sources, script, platforms, products, dependencies)

0 comments on commit 094b15f

Please sign in to comment.