Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New deployment strategy #165

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 22 additions & 13 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,29 @@ dist: trusty
install: true
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Travis CLI reformatted the .yml. Other than that the only thing that changed is the secure environment variable, and the deployment, and one new line of error log printing on failure.

language: java
jdk:
- oraclejdk8

env: DISPLAY=:99.0

- oraclejdk8
env:
global:
- DISPLAY=:99.0
- secure: hrhXziFxLKT583LkTdvvnXtGLTlSnULBL5SRQKKDZdVWwqlKKWKxIBsFt8alKXDWbJOo8iLkt55nnOMw8mRg1aEfAqQSRDerzO6wBGS1vLgOSf/IAKAw6cWxVIxbJpX/wE0IrwgX+DSeZUjt3hqaVfDt6KxZ24BGISXJBaBpltDJATsayXCgRy5PMJcU4CN7Lxo+WbQ5EQHUV6gQDgZiYtvM5g+V6cunKFbAFJhm9qZGOjR5H8o7YnL1pbzUg2YIEWZ1YyvW/CE4GvbwczsmeR82JKj/dXFg9thy1+2XGXgQUr+jvSK6k0CEXDqNovHbLmDzBhwgEtADJRLC/HRSz1LbSSDAAv/8Gz6oAj3vASFEmy9SO8djSIlP/7cKsklYoCJ9MOeZJWCjkv59BmiiohreazJqjcCBXHeeSCoVoNkCbihPGyx1yD7J5w4oFnKomfVoQ0MbKQFSTyEdbRaz6TVjqEvu8jLuAF5DpitSGbTDN7TDw20yl9H6tUJv73PBTqzNkUBF7y4QPpQlin9uMQLELKh2zI2oGswwuC/YDGYtyUbe8fNsNmkYKwRCpisLpOtWrDGtUTBZUBNIZiKF5QdRUpqlWEKbClJBhtMMHDAheDCabneF3WHyNW6hZllCx2Y0yRf7MNG4+ZXySnN9WOGPj3/glovlDI1LJufIppY=
before_install:
- sudo apt-get install at-spi2-core

- sudo apt-get install at-spi2-core
before_script:
- sh -e /etc/init.d/xvfb start
- sleep 10 # give xvfb some time to start

- sh -e /etc/init.d/xvfb start
- sleep 10
script: mvn -f mavendeps/pom.xml p2:site && mvn clean verify

after_failure:
- cat $TRAVIS_BUILD_DIR/tests/org.codechecker.eclipse.rcp.it.tests/target/work/data/.metadata/.log
- cat $TRAVIS_BUILD_DIR/tests/org.codechecker.eclipse.rcp.it.tests/target/surefire-reports/*

- cat $TRAVIS_BUILD_DIR/tests/org.codechecker.eclipse.rcp.it.tests/target/work/data/.metadata/.log
- cat $TRAVIS_BUILD_DIR/tests/org.codechecker.eclipse.rcp.it.tests/target/surefire-reports/*
- cat $TRAVIS_BUILD_DIR/tests/org.codechecker.eclipse.rcp.unit.tests/target/surefire-reports/*
deploy:
provider: pages
skip-cleanup: true
github-token: "$GITHUB_TOKEN"
keep-history: true
local-dir: releng/org.codechecker.eclipse.update/target/repository
repo: vodorok/vodorok.github.io
target-branch: master
verbose: true
on:
tags: true
4 changes: 4 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ This is a C/C++ code analysis plugin for Eclipse that shows bugs detected by the

## Build and install CodeChecker Eclipse Plugin

### Install from p2 repository

An experimental update site is hosted at <https://vodorok.github.io> , where the latest version of the CCE plugin can be found. Use this in Eclipse to install like any other plug-in. [CodeChecker](https://github.com/Ericsson/codechecker) is still mandatory to install separately.

### Build

Run `mvn -f mavendeps/pom.xml p2:site && mvn clean verify` in the root of the project.
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.