Skip to content
Snippets Groups Projects
Commit 26b6b759 authored by Nicolas's avatar Nicolas Committed by GitHub
Browse files

Merge branch 'master' into master

parents 7a1b2e18 3d946bb7
No related branches found
No related tags found
No related merge requests found
.DS_STORE .DS_STORE
*.sublime-project /.idea
*.sublime-workspace /*.sublime-project
vendor /*.sublime-workspace
classes/log/error_log.txt /classes/log/error_log.txt
composer.phar /composer.phar
.idea/ /node_modules
/package-lock.json
/vendor
language: php language: php
sudo: false sudo: false
cache: cache:
directories: directories:
- $HOME/.composer/cache - $HOME/.composer/cache
php: php:
- 5.6 - 5.6
- 7.0 - 7.0
- 7.1 - 7.1
env: env:
global: global:
- MOODLE_BRANCH=MOODLE_32_STABLE - MOODLE_BRANCH=MOODLE_32_STABLE
matrix: matrix:
- DB=pgsql - DB=pgsql
# - DB=mysqli # - DB=mysqli
before_install: before_install:
- composer install --no-interaction - echo $TRAVIS_PHP_VERSION
- phpenv config-rm xdebug.ini - composer install --no-interaction
- nvm install node - phpenv config-rm xdebug.ini
- cd ../.. - nvm install node
- composer selfupdate - cd ../..
- composer create-project -n --no-dev --prefer-dist moodlerooms/moodle-plugin-ci ci ^2 - composer selfupdate
- export PATH="$(cd ci/bin; pwd):$(cd ci/vendor/bin; pwd):$PATH" - 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: install:
- moodle-plugin-ci install - moodle-plugin-ci install
script: script:
# - moodle-plugin-ci phplint # - moodle-plugin-ci phplint
# - moodle-plugin-ci phpcpd # - moodle-plugin-ci phpcpd
# - moodle-plugin-ci phpmd # - moodle-plugin-ci phpmd
# - moodle-plugin-ci codechecker # - moodle-plugin-ci codechecker
- moodle-plugin-ci validate - moodle-plugin-ci validate
- moodle-plugin-ci savepoints - moodle-plugin-ci savepoints
# - moodle-plugin-ci mustache # - moodle-plugin-ci mustache
# - moodle-plugin-ci grunt # - moodle-plugin-ci grunt
- moodle-plugin-ci phpunit - moodle-plugin-ci phpunit
# - moodle-plugin-ci behat # - moodle-plugin-ci behat
# run codechecker without the vendor/ directory # run codechecker without the vendor/ directory
- rm -rf "$(find -type d -name xapi)/vendor" - rm -rf "$(find -type d -name xapi)/vendor"
- moodle-plugin-ci codechecker - moodle-plugin-ci codechecker
- cd $TRAVIS_BUILD_DIR
after_success:
- if [ "$TRAVIS_BRANCH" == "master" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_PHP_VERSION" == "7.1" ]; then
git fetch --tags;
npm i semantic-release;
npm i last-release-git;
./node_modules/.bin/semantic-release pre;
./node_modules/.bin/semantic-release post;
fi
before_deploy:
- sh ./scripts/generateVersionFile.sh
- sh ./scripts/generateZipFile.sh
deploy:
provider: releases
api_key: $GH_TOKEN
file: xapi.zip
skip_cleanup: true
on:
tags: true
php: 7.1
...@@ -65,10 +65,14 @@ class store extends php_obj implements log_writer { ...@@ -65,10 +65,14 @@ class store extends php_obj implements log_writer {
* @param log_manager $manager * @param log_manager $manager
*/ */
public function __construct(log_manager $manager) { public function __construct(log_manager $manager) {
global $CFG;
$this->helper_setup($manager); $this->helper_setup($manager);
$this->logguests = $this->get_config('logguests', 1); $this->logguests = $this->get_config('logguests', 1);
$routes = $this->get_config('routes', ''); $routes = $this->get_config('routes', '');
$this->routes = $routes === '' ? [] : explode(',', $routes); $this->routes = $routes === '' ? [] : explode(',', $routes);
if (!empty($CFG->debug) and $CFG->debug >= DEBUG_DEVELOPER) {
$this->loggingenabled = true;
}
} }
/** /**
......
{
"name": "moodle-logstore_xapi",
"repository": {
"type": "git",
"url": "https://github.com/xAPI-vle/moodle-logstore_xapi.git"
},
"release": {
"getLastRelease": "last-release-git"
}
}
release=$(echo "${TRAVIS_TAG//v}")
year=$(date +"%Y")
today=$(date +"%Y-%m-%d")
todaysReleases=$(git log --tags --simplify-by-decoration --pretty="format:%ai %d" | sort -r | grep "$today" | wc -l | tr -d '[:space:]')
versionPrefix=$(date +"%Y%m%d")
versionSuffix=$(printf %02d $todaysReleases)
version="$versionPrefix$versionSuffix"
template=$(cat templateVersionFile)
eval "echo \"$template\"" > version.php
...@@ -14,13 +14,11 @@ find ../moodle_logstore_build -type f -name '.gitignore' | xargs rm -rf ...@@ -14,13 +14,11 @@ find ../moodle_logstore_build -type f -name '.gitignore' | xargs rm -rf
find ../moodle_logstore_build -type f -name 'composer.*' | xargs rm -rf find ../moodle_logstore_build -type f -name 'composer.*' | xargs rm -rf
find ../moodle_logstore_build -type f -name 'phpunit.*' | xargs rm -rf find ../moodle_logstore_build -type f -name 'phpunit.*' | xargs rm -rf
find ../moodle_logstore_build -type f -name '*.md' | xargs rm -rf find ../moodle_logstore_build -type f -name '*.md' | xargs rm -rf
find ../moodle_logstore_build -type f -name 'node_modules' | xargs rm -rf
find ../moodle_logstore_build -type f -name 'package-lock.json' | xargs rm -rf
find ../moodle_logstore_build -type f -name 'package.json' | xargs rm -rf
# Creates the zip file. # Creates the zip file.
mv ../moodle_logstore_build xapi mv ../moodle_logstore_build xapi
zip -r xapi.zip xapi -x "xapi/.git/**/*" zip -r xapi.zip xapi -x "xapi/.git/**/*"
rm -rf xapi rm -rf xapi
# Updates Github.
git add xapi.zip
git commit -m "Builds zip file."
git push
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* External xapi log store plugin
*
* @package logstore_xapi
* @copyright $year Jerrett Fowler <jfowler@charitylearning.org>
* Ryan Smith <ryan.smith@ht2.co.uk>
* David Pesce <david.pesce@exputo.com>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die();
\$plugin->component = 'logstore_xapi';
\$plugin->version = $version;
\$plugin->release = '$release';
\$plugin->requires = 2014111000;
\$plugin->maturity = MATURITY_STABLE;
...@@ -28,6 +28,6 @@ defined('MOODLE_INTERNAL') || die(); ...@@ -28,6 +28,6 @@ defined('MOODLE_INTERNAL') || die();
$plugin->component = 'logstore_xapi'; $plugin->component = 'logstore_xapi';
$plugin->version = 2017061100; $plugin->version = 2017061100;
$plugin->release = '2.0.0'; $plugin->release = '0.0.0-development';
$plugin->requires = 2014111000; $plugin->requires = 2014111000;
$plugin->maturity = MATURITY_STABLE; $plugin->maturity = MATURITY_ALPHA;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment