Skip to content

Commit

Permalink
feat(plugin): Adds automatic releasing with semantic release.
Browse files Browse the repository at this point in the history
  • Loading branch information
ryasmi authored Oct 6, 2017
1 parent 905d9fd commit bff20f6
Show file tree
Hide file tree
Showing 3 changed files with 71 additions and 39 deletions.
14 changes: 8 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
.DS_STORE
*.sublime-project
*.sublime-workspace
vendor
classes/log/error_log.txt
composer.phar
.idea/
/.idea
/*.sublime-project
/*.sublime-workspace
/classes/log/error_log.txt
/composer.phar
/node_modules
/package-lock.json
/vendor
86 changes: 53 additions & 33 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,47 +1,67 @@
language: php

sudo: false

cache:
directories:
- $HOME/.composer/cache
directories:
- $HOME/.composer/cache

php:
- 5.6
- 7.0
- 7.1
- 5.6
- 7.0
- 7.1

env:
global:
- MOODLE_BRANCH=MOODLE_32_STABLE
matrix:
- DB=pgsql
# - DB=mysqli
global:
- MOODLE_BRANCH=MOODLE_32_STABLE
matrix:
- DB=pgsql
# - DB=mysqli

before_install:
- composer install --no-interaction
- phpenv config-rm xdebug.ini
- nvm install node
- cd ../..
- composer selfupdate
- composer create-project -n --no-dev --prefer-dist moodlerooms/moodle-plugin-ci ci ^2
- export PATH="$(cd ci/bin; pwd):$(cd ci/vendor/bin; pwd):$PATH"
- composer install --no-interaction
- phpenv config-rm xdebug.ini
- nvm install node
- cd ../..
- composer selfupdate
- composer create-project -n --no-dev --prefer-dist moodlerooms/moodle-plugin-ci ci ^2
- export PATH="$(cd ci/bin; pwd):$(cd ci/vendor/bin; pwd):$PATH"

install:
- moodle-plugin-ci install
- moodle-plugin-ci install

script:
# - moodle-plugin-ci phplint
# - moodle-plugin-ci phpcpd
# - moodle-plugin-ci phpmd
# - moodle-plugin-ci codechecker
- moodle-plugin-ci validate
- moodle-plugin-ci savepoints
# - moodle-plugin-ci mustache
# - moodle-plugin-ci grunt
- moodle-plugin-ci phpunit
# - moodle-plugin-ci behat

# run codechecker without the vendor/ directory
- rm -rf "$(find -type d -name xapi)/vendor"
- moodle-plugin-ci codechecker
# - moodle-plugin-ci phplint
# - moodle-plugin-ci phpcpd
# - moodle-plugin-ci phpmd
# - moodle-plugin-ci codechecker
- moodle-plugin-ci validate
- moodle-plugin-ci savepoints
# - moodle-plugin-ci mustache
# - moodle-plugin-ci grunt
- moodle-plugin-ci phpunit
# - moodle-plugin-ci behat

# run codechecker without the vendor/ directory
- rm -rf "$(find -type d -name xapi)/vendor"
- moodle-plugin-ci codechecker

after_success:
- if [[ "$TRAVIS_BRANCH" == "master" ]]; then
git fetch --tags;
npm i semantic-release;
npm i last-release-git;
semantic-release pre;
semantic-release post;
fi

before_deploy:
- sh build.sh

deploy:
provider: releases
api_key: $GH_TOKEN
file: xapi.zip
skip_cleanup: true
on:
tags: true
php: 7.1
10 changes: 10 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"name": "moodle-logstore_xapi",
"repository": {
"type": "git",
"url": "https://github.com/xAPI-vle/moodle-logstore_xapi.git"
},
"release": {
"getLastRelease": "last-release-git"
}
}

0 comments on commit bff20f6

Please sign in to comment.