-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build and upload tagged releases to GitHub Releases from CI.
- Loading branch information
Showing
2 changed files
with
23 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,26 @@ | ||
language: c | ||
compiler: | ||
- clang | ||
- clang | ||
script: PLATFORM=TESTING make test_long | ||
install: | ||
- gem install coveralls-lcov | ||
- gem install coveralls-lcov | ||
before_install: | ||
- sudo apt-get update -qq | ||
- if [ `uname -m` = x86_64 ]; then sudo apt-get install -qq -y libgd2-xpm ia32-libs ia32-libs-multiarch; fi | ||
- script/bootstrap.sh | ||
- cd src | ||
- sudo apt-get update -qq | ||
- if [ `uname -m` = x86_64 ]; then sudo apt-get install -qq -y libgd2-xpm ia32-libs | ||
ia32-libs-multiarch; fi | ||
- script/bootstrap.sh | ||
- cd src | ||
after_success: | ||
- PLATFORM=TESTING make coverage | ||
- coveralls-lcov build/tests/coverage.info | ||
- PLATFORM=TESTING make coverage | ||
- coveralls-lcov build/tests/coverage.info | ||
deploy: | ||
provider: releases | ||
api_key: | ||
secure: NOSHkTeRCfYcfW6ft8/5xOsEmn0DFrfvJL0UFsDQ9f0dBPoXPMJpgbXr+0i4wbMvwIgAKmJ2SfgvIBcm8IWXhLSMsZiaaTvrbomNgqI8ZIghBdSe6GARaiF/9V/A5l/8zCVMs65Kpo1BssC0BiESpIgoOR/aeF5J6TmCIbUe03k= | ||
before_deploy: echo "n" | fab release:skip_tests=True | ||
skip_cleanup: true | ||
file_glob: true | ||
file: "./release/openxc-vi-firmware-v*.*.*.zip" | ||
on: | ||
repo: openxc/vi-firmware | ||
tags: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters