gosora/.travis.yml

26 lines
682 B
YAML
Raw Normal View History

language: go
go:
2019-10-31 22:20:34 +00:00
- "1.13"
- "1.14"
2020-08-12 15:58:04 +00:00
- "1.15"
2021-02-16 23:23:29 +00:00
- "1.16"
2019-06-18 09:08:26 +00:00
- master
before_install:
2017-10-31 00:53:00 +00:00
- cd $HOME
- git clone https://github.com/Azareal/Gosora gosora
- cd gosora
- chmod -R 0777 .
2018-06-17 07:39:31 +00:00
- mv ./config/config_example.json ./config/config.json
- ./update-deps-linux
- ./dev-update-travis
Basic search now works for the Search & Filter Widget. ElasticSearch has been temporarily delayed, so I can push through this update. Added the three month time range to the analytics panes. Began work on adding new graphs to the analytics panes. Began work on the ElasticSearch adapter for the search system. Added the currently limited AddKey method to the database adapters. Expanded upon the column parsing logic in the database adapters to ease the use of InsertSelects. Added the BulkGet method to TopicCache. Added the BulkGetMap method to TopicStore. TopicStore methods should now properly retrieve lastReplyBy. Added the panel_analytics_script template to de-dupe part of the analytics logic. We plan to tidy this up further, but for now, it'll suffice. Added plugin_sendmail and plugin_hyperdrive to the continuous integration test list. Tweaked the width and heights of the textareas for the Widget Editor. Added the AddKey method to *qgen.builder Fixed a bug where using the inline forum editor would crash Gosora and wouldn't set the preset permissions for that forum properly. Added DotBot to the user agent analytics. Invisibles should be better handled when they're encountered now in user agent strings. Unknown language ISO Codes in headers now have the requests fully logged for debugging purposes. Shortened some of the pointer receiver names. Shortened some variable names. Added the dotbot phrase. Added the panel_statistics_time_range_three_months phrase. Added gopkg.in/olivere/elastic.v6 as a dependency. You will need to run the patcher or updater for this commit.
2019-02-23 06:29:19 +00:00
- mv ./experimental/plugin_sendmail.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:
2019-02-23 07:33:18 +00:00
mariadb: '10.3'