Преглед изворни кода

[fix] travis build : various fix about grunt builds

Alexandre Flament пре 7 година
родитељ
комит
57dc6b625f
4 измењених фајлова са 36 додато и 21 уклоњено
  1. 1
    4
      .travis.yml
  2. 30
    17
      manage.sh
  3. 4
    0
      searx/static/themes/oscar/gruntfile.js
  4. 1
    0
      searx/static/themes/simple/gruntfile.js

+ 1
- 4
.travis.yml Прегледај датотеку

15
   - "sh -e /etc/init.d/xvfb start"
15
   - "sh -e /etc/init.d/xvfb start"
16
   - npm install less less-plugin-clean-css grunt-cli
16
   - npm install less less-plugin-clean-css grunt-cli
17
   - export PATH=`pwd`/node_modules/.bin:$PATH
17
   - export PATH=`pwd`/node_modules/.bin:$PATH
18
-  - ls -l $VIRTUAL_ENV
19
-  - ls -l $VIRTUAL_ENV/bin
20
-  - ( cd searx/static/themes/oscar;npm install; cd - )
21
-  - ( cd searx/static/themes/simple;npm install; cd - )
18
+  - ./manage.sh grunt_packages
22
   - mkdir -p ~/drivers; export PATH=~/drivers:$PATH;
19
   - mkdir -p ~/drivers; export PATH=~/drivers:$PATH;
23
   - GECKODRIVER_URL="https://github.com/mozilla/geckodriver/releases/download/v0.18.0/geckodriver-v0.18.0-linux64.tar.gz";
20
   - GECKODRIVER_URL="https://github.com/mozilla/geckodriver/releases/download/v0.18.0/geckodriver-v0.18.0-linux64.tar.gz";
24
   - FILE=`mktemp`; wget "$GECKODRIVER_URL" -qO $FILE && tar xz -C ~/drivers -f $FILE geckodriver; rm $FILE; chmod 777 ~/drivers/geckodriver;
21
   - FILE=`mktemp`; wget "$GECKODRIVER_URL" -qO $FILE && tar xz -C ~/drivers -f $FILE geckodriver; rm $FILE; chmod 777 ~/drivers/geckodriver;

+ 30
- 17
manage.sh Прегледај датотеку

5
 SEARX_DIR="$BASE_DIR/searx"
5
 SEARX_DIR="$BASE_DIR/searx"
6
 ACTION=$1
6
 ACTION=$1
7
 
7
 
8
+cd $BASE_DIR
9
+
8
 update_packages() {
10
 update_packages() {
9
     pip install -r "$BASE_DIR/requirements.txt"
11
     pip install -r "$BASE_DIR/requirements.txt"
10
 }
12
 }
14
     pip install -r "$BASE_DIR/requirements-dev.txt"
16
     pip install -r "$BASE_DIR/requirements-dev.txt"
15
 }
17
 }
16
 
18
 
17
-check_geckodriver() {
19
+install_geckodriver() {
18
     echo '[!] Checking geckodriver'
20
     echo '[!] Checking geckodriver'
19
     set -e
21
     set -e
20
     geckodriver -V 2>1 > /dev/null || NOTFOUND=1
22
     geckodriver -V 2>1 > /dev/null || NOTFOUND=1
73
     set -e
75
     set -e
74
     pep8_check
76
     pep8_check
75
     unit_tests
77
     unit_tests
76
-    check_geckodriver
78
+    install_geckodriver
77
     robot_tests
79
     robot_tests
78
     set +e
80
     set +e
79
 }
81
 }
80
 
82
 
81
 build_style() {
83
 build_style() {
82
-    # lessc -x "$BASE_DIR/searx/static/$1" "$BASE_DIR/searx/static/$2"
83
     lessc --clean-css="--s1 --advanced --compatibility=ie9" "$BASE_DIR/searx/static/$1" "$BASE_DIR/searx/static/$2"
84
     lessc --clean-css="--s1 --advanced --compatibility=ie9" "$BASE_DIR/searx/static/$1" "$BASE_DIR/searx/static/$2"
84
 }
85
 }
85
 
86
 
86
 styles() {
87
 styles() {
87
     echo '[!] Building styles'
88
     echo '[!] Building styles'
88
-	build_style themes/legacy/less/style.less themes/legacy/css/style.css
89
-	build_style themes/legacy/less/style-rtl.less themes/legacy/css/style-rtl.css
90
-	build_style themes/courgette/less/style.less themes/courgette/css/style.css
91
-	build_style themes/courgette/less/style-rtl.less themes/courgette/css/style-rtl.css
92
-	build_style less/bootstrap/bootstrap.less css/bootstrap.min.css
93
-	build_style themes/oscar/less/pointhi/oscar.less themes/oscar/css/pointhi.min.css
94
-	build_style themes/oscar/less/logicodev/oscar.less themes/oscar/css/logicodev.min.css
95
-	build_style themes/pix-art/less/style.less themes/pix-art/css/style.css
96
-	build_style themes/simple/less/style.less themes/simple/css/searx.min.css
97
-	build_style themes/simple/less/style-rtl.less themes/simple/css/searx-rtl.min.css
89
+    build_style themes/legacy/less/style.less themes/legacy/css/style.css
90
+    build_style themes/legacy/less/style-rtl.less themes/legacy/css/style-rtl.css
91
+    build_style themes/courgette/less/style.less themes/courgette/css/style.css
92
+    build_style themes/courgette/less/style-rtl.less themes/courgette/css/style-rtl.css
93
+    build_style less/bootstrap/bootstrap.less css/bootstrap.min.css
94
+    build_style themes/oscar/less/pointhi/oscar.less themes/oscar/css/pointhi.min.css
95
+    build_style themes/oscar/less/logicodev/oscar.less themes/oscar/css/logicodev.min.css
96
+    build_style themes/pix-art/less/style.less themes/pix-art/css/style.css
97
+    build_style themes/simple/less/style.less themes/simple/css/searx.min.css
98
+    build_style themes/simple/less/style-rtl.less themes/simple/css/searx-rtl.min.css
99
+}
100
+
101
+grunt_packages() {
102
+    echo '[!] Grunt packages: install dependencies'
103
+    cd $BASE_DIR/searx/static/themes/oscar
104
+    npm install
105
+    
106
+    cd $BASE_DIR/searx/static/themes/simple
107
+    npm install
98
 }
108
 }
99
 
109
 
100
 grunt_build() {
110
 grunt_build() {
101
-	grunt --gruntfile "$SEARX_DIR/static/themes/oscar/gruntfile.js"
102
-	grunt --gruntfile "$SEARX_DIR/static/themes/simple/gruntfile.js"
111
+    echo '[!] Grunt build : oscar theme'
112
+    grunt --gruntfile "$SEARX_DIR/static/themes/oscar/gruntfile.js"
113
+    echo '[!] Grunt build : simple theme'    
114
+    grunt --gruntfile "$SEARX_DIR/static/themes/simple/gruntfile.js"
103
 }
115
 }
104
 
116
 
105
 locales() {
117
 locales() {
106
-	pybabel compile -d "$SEARX_DIR/translations"
118
+    pybabel compile -d "$SEARX_DIR/translations"
107
 }
119
 }
108
 
120
 
109
 help() {
121
 help() {
112
 
124
 
113
 Commands
125
 Commands
114
 ========
126
 ========
127
+    grunt_packages       - Download & install dependencies
115
     grunt_build          - Build js files
128
     grunt_build          - Build js files
116
     help                 - This text
129
     help                 - This text
117
     locales              - Compile locales
130
     locales              - Compile locales
123
     unit_tests           - Run unit tests
136
     unit_tests           - Run unit tests
124
     update_dev_packages  - Check & update development and production dependency changes
137
     update_dev_packages  - Check & update development and production dependency changes
125
     update_packages      - Check & update dependency changes
138
     update_packages      - Check & update dependency changes
126
-    check_geckodriver    - Check & download geckodriver (required for robot_tests)
139
+    install_geckodriver  - Download & install geckodriver if not already installed (required for robot_tests)
127
 "
140
 "
128
 }
141
 }
129
 
142
 

+ 4
- 0
searx/static/themes/oscar/gruntfile.js Прегледај датотеку

24
     jshint: {
24
     jshint: {
25
       files: ['gruntfile.js', 'js/searx_src/*.js'],
25
       files: ['gruntfile.js', 'js/searx_src/*.js'],
26
       options: {
26
       options: {
27
+        reporterOutput: "",	    
27
         // options here to override JSHint defaults
28
         // options here to override JSHint defaults
28
         globals: {
29
         globals: {
29
           jQuery: true,
30
           jQuery: true,
51
             files: {"css/pointhi.min.css": "less/pointhi/oscar.less",
52
             files: {"css/pointhi.min.css": "less/pointhi/oscar.less",
52
                     "css/logicodev.min.css": "less/logicodev/oscar.less"}
53
                     "css/logicodev.min.css": "less/logicodev/oscar.less"}
53
         },
54
         },
55
+        /*
56
+	// built with ./manage.sh styles
54
         bootstrap: {
57
         bootstrap: {
55
             options: {
58
             options: {
56
                 paths: ["less/bootstrap"],
59
                 paths: ["less/bootstrap"],
58
             },
61
             },
59
             files: {"css/bootstrap.min.css": "less/bootstrap/bootstrap.less"}
62
             files: {"css/bootstrap.min.css": "less/bootstrap/bootstrap.less"}
60
         },
63
         },
64
+        */
61
     },
65
     },
62
     watch: {
66
     watch: {
63
         scripts: {
67
         scripts: {

+ 1
- 0
searx/static/themes/simple/gruntfile.js Прегледај датотеку

34
     jshint: {
34
     jshint: {
35
       files: ['js/searx_src/*.js'],
35
       files: ['js/searx_src/*.js'],
36
       options: {
36
       options: {
37
+        reporterOutput: "",
37
         proto: true,
38
         proto: true,
38
         // options here to override JSHint defaults
39
         // options here to override JSHint defaults
39
         globals: {
40
         globals: {