diff options
author | silverwind <me@silverwind.io> | 2022-07-14 10:09:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-14 16:09:26 +0800 |
commit | aec6b30e2a599645b563425595ab66fdc5d3928a (patch) | |
tree | 544dac76441fa4a7d2b2f2fb0bc07a600e18bfa1 /.drone.yml | |
parent | bffa30302070b594a1c40cdc56264b9731036fb3 (diff) | |
download | gitea-aec6b30e2a599645b563425595ab66fdc5d3928a.tar.gz gitea-aec6b30e2a599645b563425595ab66fdc5d3928a.zip |
Unbreak release pipeline (#20356)
Downgrade release pipeline to node 16 until xgo updates its base OS to a
version with a compatible glibc.
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.drone.yml b/.drone.yml index 8f06877fba..3c1cf2a02f 100644 --- a/.drone.yml +++ b/.drone.yml @@ -652,7 +652,8 @@ steps: image: techknowlogick/xgo:go-1.18.x pull: always commands: - - curl -sL https://deb.nodesource.com/setup_18.x | bash - && apt-get install -y nodejs + # Upgrade to node 18 once https://github.com/techknowlogick/xgo/issues/163 is resolved + - curl -sL https://deb.nodesource.com/setup_16.x | bash - && apt-get install -y nodejs - export PATH=$PATH:$GOPATH/bin - make release environment: @@ -771,7 +772,8 @@ steps: image: techknowlogick/xgo:go-1.18.x pull: always commands: - - curl -sL https://deb.nodesource.com/setup_18.x | bash - && apt-get install -y nodejs + # Upgrade to node 18 once https://github.com/techknowlogick/xgo/issues/163 is resolved + - curl -sL https://deb.nodesource.com/setup_16.x | bash - && apt-get install -y nodejs - export PATH=$PATH:$GOPATH/bin - make release environment: |