├── .gitignore ├── README.md ├── LICENSE.md └── .travis.yml /.gitignore: -------------------------------------------------------------------------------- 1 | products/ 2 | downloads/ 3 | build/ 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # COINBLASBuilder 2 | 3 | [![Build Status](https://travis-ci.org/JuliaOpt/COINBLASBuilder.svg?branch=master)](https://travis-ci.org/JuliaOpt/COINBLASBuilder) 4 | 5 | This repository builds binary artifacts for the COINBLASBuilder project. Binary artifacts are automatically uploaded to 6 | [this repository's GitHub releases page](https://github.com/JuliaOpt/COINBLASBuilder/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/COINBLASBuilder; you need 33 | # to make your own: https://docs.travis-ci.com/user/deployment/releases/ 34 | secure: Av9if4/yWqqn82dMpuq07raXBkvGoTDhw6NDdC4S7AladWpOnCEWBSmlyv1Rnapmqpdis3KDPrZP3xJXrlWlBiPWK+4ofcX0eX3VcQDl8PecDN09gheeTcwxpAxQify37xMOCb0EhSNu0a/YLyiefryittRFSuCgmgNEYaKKRxw9D/c/A5MYvNbaG+T/9LAHK3ApyChzoIUNZEVaoCUlg+b6jfhTsbSf21qWLTB9Cqauh5Hh9YmZ4+8O0gDvQrWjXXLAE5a7hzy10o32sQJB99cPRHdyeshyYmDt2m6Gwk/XCM7HpKwEdqt2+PNal8+TYustjC5Bd6uXReWhh6SzQsxYkm16L8CssysgRL8K5iZCBVrkwIOskJBMm3c/LHDxQZWezDbfibNZM7Wu40WR1uejlA0aO+X38Jkhr8Gt/jvx+Osrb4pFWLkipryNxjIsBajtQZCpOJFxkEiIjE++PbCZx91yt0Y0iSfII5fEIa/dpeRe6wmKnVHwgcdfQnAjunHKUxTYY/rw+F7cmeBbDNN9d8B6k3DDEUBZrji1ZSK29HstX83NrWVLwdY514jcbcAcWK8r41g+ry52sWXCoivzF6l+9dW5qf9EoVX6+sh45LulkwEZKEFQpfyDxWHJand0cP0oGu0qOilstAlpk/3R3WDPQ3uTRHSvlRJJbpc= 35 | file_glob: true 36 | file: products/* 37 | skip_cleanup: true 38 | on: 39 | repo: JuliaOpt/COINBLASBuilder 40 | tags: true 41 | --------------------------------------------------------------------------------