diff options
author | 6543 <6543@obermui.de> | 2021-08-02 03:47:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-02 03:47:29 +0200 |
commit | 24366eddec0915d92165f1a45c01ed2a5bdeac8e (patch) | |
tree | ab760926a8566dacafc7ae561d60793475abc46b /.drone.yml | |
parent | 3375e7658e00fe8764a8b7fa7016d85753686739 (diff) | |
download | gitea-24366eddec0915d92165f1a45c01ed2a5bdeac8e.tar.gz gitea-24366eddec0915d92165f1a45c01ed2a5bdeac8e.zip |
[CI] Use node v14 instead of node v16 untill it will pass again (#16595)
* for CI release: use node 14 (lts) to build until 16 do fail
* all in for node v14.x
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/.drone.yml b/.drone.yml index 65b239fb6f..f4a6d31625 100644 --- a/.drone.yml +++ b/.drone.yml @@ -15,12 +15,12 @@ trigger: steps: - name: deps-frontend pull: always - image: node:16.5 + image: node:14 commands: - make node_modules - name: lint-frontend - image: node:16.5 + image: node:14 commands: - make lint-frontend depends_on: [deps-frontend] @@ -58,7 +58,7 @@ steps: TAGS: bindata gogit sqlite sqlite_unlock_notify - name: checks-frontend - image: node:16.5 + image: node:14 commands: - make checks-frontend depends_on: [deps-frontend] @@ -71,13 +71,13 @@ steps: depends_on: [lint-backend] - name: test-frontend - image: node:16.5 + image: node:14 commands: - make test-frontend depends_on: [lint-frontend] - name: build-frontend - image: node:16.5 + image: node:14 commands: - make frontend depends_on: [test-frontend] @@ -514,7 +514,7 @@ steps: pull: always image: techknowlogick/xgo:go-1.16.x commands: - - curl -sL https://deb.nodesource.com/setup_16.x | bash - && apt-get install -y nodejs + - curl -sL https://deb.nodesource.com/setup_14.x | bash - && apt-get install -y nodejs - export PATH=$PATH:$GOPATH/bin - make release environment: @@ -610,7 +610,7 @@ steps: pull: always image: techknowlogick/xgo:go-1.16.x commands: - - curl -sL https://deb.nodesource.com/setup_16.x | bash - && apt-get install -y nodejs + - curl -sL https://deb.nodesource.com/setup_14.x | bash - && apt-get install -y nodejs - export PATH=$PATH:$GOPATH/bin - make release environment: |