├── .gitignore ├── README.md ├── LICENSE.md └── .travis.yml /.gitignore: -------------------------------------------------------------------------------- 1 | products/ 2 | downloads/ 3 | build/ 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # COINLapackBuilder 2 | 3 | [![Build Status](https://travis-ci.org/JuliaOpt/COINLapackBuilder.svg?branch=master)](https://travis-ci.org/JuliaOpt/COINLapackBuilder) 4 | 5 | This repository builds binary artifacts for the COINLapackBuilder project. Binary artifacts are automatically uploaded to 6 | [this repository's GitHub releases page](https://github.com/JuliaOpt/COINLapackBuilder/releases) whenever a tag is created 7 | on this repository. 8 | 9 | This repository was created using [BinaryBuilder.jl](https://github.com/JuliaPackaging/BinaryBuilder.jl) 10 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | 2 | Permission is hereby granted, free of charge, to any person obtaining a copy 3 | of this software and associated documentation files (the "Software"), to deal 4 | in the Software without restriction, including without limitation the rights 5 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 6 | copies of the Software, and to permit persons to whom the Software is 7 | furnished to do so, subject to the following conditions: 8 | 9 | The above copyright notice and this permission notice shall be included in all 10 | copies or substantial portions of the Software. 11 | 12 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 14 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 15 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 16 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 17 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 18 | SOFTWARE. 19 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: julia 2 | os: 3 | - linux 4 | julia: 5 | - 1.0 6 | notifications: 7 | email: false 8 | git: 9 | depth: 99999999 10 | cache: 11 | timeout: 1000 12 | directories: 13 | - downloads 14 | env: 15 | global: 16 | - BINARYBUILDER_DOWNLOADS_CACHE=downloads 17 | - BINARYBUILDER_AUTOMATIC_APPLE=true 18 | sudo: required 19 | 20 | # Before anything else, get the latest versions of things 21 | before_script: 22 | - julia -e 'using Pkg; Pkg.add(PackageSpec(name="BinaryProvider", url="https://github.com/JuliaPackaging/BinaryProvider.jl"))' 23 | - julia -e 'using Pkg; Pkg.add(PackageSpec(name="BinaryBuilder", url="https://github.com/JuliaPackaging/BinaryBuilder.jl")); Pkg.build()' 24 | 25 | script: 26 | - julia build_tarballs.jl 27 | 28 | 29 | deploy: 30 | provider: releases 31 | api_key: 32 | # Note; this api_key is only valid for JuliaOpt/COINLapackBuilder; you need 33 | # to make your own: https://docs.travis-ci.com/user/deployment/releases/ 34 | secure: X7aOwqXcP1FpRBfLjHU7qxJq4/uW8Wnrgk0oiP2Bx3wgMgcaoNcnqULLEJvWeSyRbSmo79AKh02zkamKWwHJix3F+oemF7OmiqJRo+Wr5Kw9x3OzpsgCT/zzp4056ULDOSOo2u5mHylT0s3nK09PdQMXDh5BrWiSrGg0+8Qlgx3dAs/bMXQCTyadYKXjxrU1XA0U7oG9AgYAmg5ZI32guS/gHJ1tRY+opB5IcCjDHNBWg9lCLyWZdcg4jkKDFNu7/WjGvTq83iDFk7+xXKMnDh9AcYNwyDiD6zLk5TONH/0yj2k7JFJkBOqyllHA7EqPdcuGWvdjaNmNILz3LMfD1aIO5aBPSEMfGPhMYqYbU5eCzAiPlti9i0OcnnxTs3sDGtDJFh5K3QbDJ21EsgXjD6AtvZ/2sQ5qyAkgsr/P2RHjoBO4mMS7MNARwXMWfdAMlG2CM3eoA5bRE7Cuso3Ll6MOIZnQCP/vefdGU8HvV52Z5Z6xdiQ0fkqOVQCnPyLQ28xl1PGQW7GpXtWp1sGNwTzvW17702lmqFVjhKo/Dl0vDk1x7wuq3cXcmiafKdtRz7n3Nf2vM2owOoaUQuEeoJ42nNLrw/vUDsiDdAlYV7RnJLsPKTIbbTjGCyAgE44bLvmEkOrcqxisV9Z/3iM3P+2g+7m9EqYI1gTTtUdmyc0= 35 | file_glob: true 36 | file: products/* 37 | skip_cleanup: true 38 | on: 39 | repo: JuliaOpt/COINLapackBuilder 40 | tags: true 41 | --------------------------------------------------------------------------------