├── .gitignore ├── README.md ├── LICENSE.md └── .travis.yml /.gitignore: -------------------------------------------------------------------------------- 1 | products/ 2 | downloads/ 3 | build/ 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # IpoptBuilder 2 | 3 | [![Build Status](https://travis-ci.org/juan-pablo-vielma/IpoptBuilder.svg?branch=master)](https://travis-ci.org/juan-pablo-vielma/IpoptBuilder) 4 | 5 | This repository builds binary artifacts for the IpoptBuilder project. Binary artifacts are automatically uploaded to 6 | [this repository's GitHub releases page](https://github.com/juan-pablo-vielma/IpoptBuilder/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 | - 0.7 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 juan-pablo-vielma/IpoptBuilder; you need 33 | # to make your own: https://docs.travis-ci.com/user/deployment/releases/ 34 | secure: K1OuT+6yu75lvwte0fny2h0eoR9LZbQfrzm0RJoMk0zFmFh6+56RhzCWS0Fad0ckoVSsMkIrb1J18mRHa1jWnvGRi6Ex70SoyygDUpeqFWPcREaXLu9apj2h/Gsl9EFiK6Icb7X25I6qqXfQ1sJhgI8kPr2R3WQZW5B5GFI/i5Bz6TV941BU4NEmLgLsQWq7PQ8P5/uAZGn/MW7DrnbHStke2lnvj+NxJLDtpkWGIiRMekmC4gbv8+TiV0AB2LcTzfXXwYNmN485LWxJJPixQOvKaVBWW7/sGi2GrsI+MhVGpFOCU3nNW/HMrGVxS5LPmAoCBlzqGzl+82gVUL0hLwUU5LQK0j783VS7uv4BASgDZltpzGgGLK65FDdIagDsPI+ohTGK1NwHVrD2sKO0/V9AEJK6Su38Rt42m7B0koA/8gZa4aWwUAHCkKEOwYLzPh13ZJmX1BjBw2m1dzMr13OBB3ynns3afBfGLz4NSM7vaC2ywOpIzCC/1h52s5w7ubanQpt2HS9xvYFL188EBcq5wyqyG1n4ebtqVpk+swDUuC7PzIi0cC1DhPyFXw7PmtbzVPU/dw965a26UWstUt9I/XGY9kasz8YghhOD4p+Rlx9HzXy1mlL6wfv8K+IwZNIjJTTyVqUnJ/naz5FkSht0xZxRHlSIo38lm3XqSnk= 35 | file_glob: true 36 | file: products/* 37 | skip_cleanup: true 38 | on: 39 | repo: juan-pablo-vielma/IpoptBuilder 40 | tags: true 41 | --------------------------------------------------------------------------------