15420d4d89
Partially rewrote the forum permissions system to make it more stable. Moved config.go into it's own package in /config/ Removed Go Git as a dependency. Tweaked the GopherJS pulling. Fixed inserts where all the columns have default values. Reverted a silly tweak I made thinking that mOrder == order. Removed the /common/ hack from the patcher. Fixed a bug where the forum creator would ignore the visiblity value you provided. The tests now work again. Swapped a misplaced fmt.Println with a fmt.Printf. Fixed a bug in the installer where all the table logs would be on one line in the console. Added more logging to the installer.
18 lines
392 B
YAML
18 lines
392 B
YAML
language: go
|
|
go:
|
|
- "1.10"
|
|
- master
|
|
before_install:
|
|
- cd $HOME
|
|
- git clone https://github.com/Azareal/Gosora
|
|
- cd Gosora
|
|
- mv config_default.noparse ./config/config.go
|
|
- chmod 755 ./update-deps-linux
|
|
- chmod 755 ./dev-update-travis
|
|
- chmod 755 ./run-linux-tests
|
|
- ./update-deps-linux
|
|
- ./dev-update-travis
|
|
install: true
|
|
script: ./run-linux-tests
|
|
addons:
|
|
mariadb: '10.0' |