mirror of
https://github.com/ru-de/faq.git
synced 2024-11-23 19:02:19 +00:00
fix build
This commit is contained in:
parent
851baa1fbf
commit
277c49d34c
@ -2,6 +2,8 @@
|
|||||||
|
|
||||||
set -xe
|
set -xe
|
||||||
|
|
||||||
|
DIR=`dirname $0`
|
||||||
|
|
||||||
apt-get -yqq update && apt-get install -y hunspell hunspell-ru hunspell-en-us hunspell-de-de
|
apt-get -yqq update && apt-get install -y hunspell hunspell-ru hunspell-en-us hunspell-de-de
|
||||||
curl -s https://extensions.libreoffice.org/extensions/russian-spellcheck-dictionary.-based-on-works-of-aot-group > .dict_page
|
curl -s https://extensions.libreoffice.org/extensions/russian-spellcheck-dictionary.-based-on-works-of-aot-group > .dict_page
|
||||||
cat .dict_page | grep -oP "<a href.+title=\"Current release for the project\"" | grep -oP "https://extensions.libreoffice.org/extensions/russian-spellcheck-dictionary.-based-on-works-of-aot-group/[^\"]+" > .current_release
|
cat .dict_page | grep -oP "<a href.+title=\"Current release for the project\"" | grep -oP "https://extensions.libreoffice.org/extensions/russian-spellcheck-dictionary.-based-on-works-of-aot-group/[^\"]+" > .current_release
|
||||||
@ -33,12 +35,11 @@ go get -u github.com/ewgRa/ci-utils/utils/hunspell_parser
|
|||||||
go get -u github.com/ewgRa/ci-utils/utils/github_comments_diff
|
go get -u github.com/ewgRa/ci-utils/utils/github_comments_diff
|
||||||
go get -u github.com/ewgRa/ci-utils/utils/github_comments_send
|
go get -u github.com/ewgRa/ci-utils/utils/github_comments_send
|
||||||
|
|
||||||
mkdir $GOPATH/ci-scripts/check_spell
|
go build -o /tmp/check_spell $DIR/go/check_spell/main.go
|
||||||
cp $DIR/check_spell.go $GOPATH/ci-scripts/check_spell/check_spell.go
|
go build -o /tmp/check_links $DIR/go/check_links/main.go
|
||||||
go build -o /tmp/check_spell $GOPATH/ci-scripts/check_spell/check_spell.go
|
|
||||||
|
|
||||||
mkdir $GOPATH/ci-scripts/check_links
|
(cat $DIR/dictionary.dic; echo) | sed '/^$/d' | wc -l > /tmp/dictionary.dic
|
||||||
cp $DIR/check_links.go $GOPATH/ci-scripts/check_links/check_links.go
|
(cat $DIR/dictionary.dic; echo) | sed '/^$/d' >> /tmp/dictionary.dic
|
||||||
|
|
||||||
go build -o /tmp/check_links $GOPATH/ci-scripts/check_links/check_links.go
|
|
||||||
|
|
||||||
|
echo "SET UTF-8" >> /tmp/dictionary.aff
|
||||||
|
sudo mv /tmp/dictionary.* /usr/share/hunspell
|
||||||
|
@ -4,12 +4,6 @@ DIR=`dirname $0`
|
|||||||
|
|
||||||
git config --global core.quotepath false
|
git config --global core.quotepath false
|
||||||
|
|
||||||
(cat $DIR/dictionary.dic; echo) | sed '/^$/d' | wc -l > /tmp/dictionary.dic
|
|
||||||
(cat $DIR/dictionary.dic; echo) | sed '/^$/d' >> /tmp/dictionary.dic
|
|
||||||
|
|
||||||
echo "SET UTF-8" >> /tmp/dictionary.aff
|
|
||||||
sudo mv /tmp/dictionary.* /usr/share/hunspell
|
|
||||||
|
|
||||||
git diff HEAD^ --name-status | grep "^D" -v | sed 's/^.\t//g' | grep "\.md$" > /tmp/changed_files
|
git diff HEAD^ --name-status | grep "^D" -v | sed 's/^.\t//g' | grep "\.md$" > /tmp/changed_files
|
||||||
|
|
||||||
curl -sH "Accept: application/vnd.github.v3.diff.json" https://api.github.com/repos/$TRAVIS_REPO_SLUG/pulls/$TRAVIS_PULL_REQUEST > /tmp/pr.diff
|
curl -sH "Accept: application/vnd.github.v3.diff.json" https://api.github.com/repos/$TRAVIS_REPO_SLUG/pulls/$TRAVIS_PULL_REQUEST > /tmp/pr.diff
|
||||||
|
Loading…
Reference in New Issue
Block a user