| Index: .gitlab-ci.yml |
| diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..734c9d83d6fd8cf4be78583d9cb68e81fe639db4 |
| --- /dev/null |
| +++ b/.gitlab-ci.yml |
| @@ -0,0 +1,26 @@ |
| +# This file is part of Adblock Plus <https://adblockplus.org/>, |
| +# Copyright (C) 2006-present eyeo GmbH |
| +# |
| +# Adblock Plus is free software: you can redistribute it and/or modify |
| +# it under the terms of the GNU General Public License version 3 as |
| +# published by the Free Software Foundation. |
| +# |
| +# Adblock Plus is distributed in the hope that it will be useful, |
| +# but WITHOUT ANY WARRANTY; without even the implied warranty of |
| +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| +# GNU General Public License for more details. |
| +# |
| +# You should have received a copy of the GNU General Public License |
| +# along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
| + |
| +--- |
| + |
| +tests: |
| + tags: |
|
tlucas
2018/09/05 12:45:35
You said the tag will likely be adjusted - keep in
sergei
2018/09/05 12:49:47
I would ask dev-ops team to make the decision rega
tlucas
2018/09/06 07:14:13
I suggest to not bother dev-ops about this decisio
Sebastian Noack
2018/09/06 19:36:27
As far as I understand, tags serve to match jobs w
|
| + - nodejs |
| + before_script: |
| + - mkdir -p .git/info |
| + - ./ensure_dependencies.py |
| + - npm install |
| + script: |
| + - npm test |