f10fdcb40c
Added the meta store. Added the panel_menu_statistics_active_memory phrase. Added the panel_statistics_active_memory_head phrase. Added the panel_analytics_time_range_month template. Added Go 1.12 to the Travis list. Added the stack and heap columns to the memchunks table. Added the createdAt column to the activity_stream table. Added the meta table. You will need to run the patcher / updater for this commit.
28 lines
805 B
YAML
28 lines
805 B
YAML
env:
|
|
global:
|
|
- CC_TEST_REPORTER_ID=38ad11f95f28b1d33c9c31467f9eb5eb4e336e4e0e36046c86a4f7ff6e4c3977
|
|
language: go
|
|
go:
|
|
- "1.11"
|
|
- "1.12"
|
|
- master
|
|
before_install:
|
|
- cd $HOME
|
|
- git clone https://github.com/Azareal/Gosora
|
|
- cd Gosora
|
|
- chmod -R 0777 .
|
|
- mv ./config/config_example.json ./config/config.json
|
|
- ./update-deps-linux
|
|
- ./dev-update-travis
|
|
- mv ./experimental/plugin_sendmail.go ..
|
|
- mv ./experimental/plugin_hyperdrive.go ..
|
|
install: true
|
|
before_script:
|
|
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
|
- chmod +x ./cc-test-reporter
|
|
- ./cc-test-reporter before-build
|
|
script: ./run-linux-tests
|
|
after_script:
|
|
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
|
|
addons:
|
|
mariadb: '10.3' |