diff options
author | silverwind <me@silverwind.io> | 2022-09-07 23:35:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-07 17:35:54 -0400 |
commit | 52c2ef79023541f36fbb72b2e4598cb6f693335f (patch) | |
tree | 1f40ade459d6dbe62feb7e8b57b3cebef56f10ac /.drone.yml | |
parent | 8b8bdb30fbc522c38a35aad46a0036b926f5db9d (diff) | |
download | gitea-52c2ef79023541f36fbb72b2e4598cb6f693335f.tar.gz gitea-52c2ef79023541f36fbb72b2e4598cb6f693335f.zip |
Rewrite go license generator in go (#21078)
This removes the JS dependency in the checks pipeline. JSON output is
different because the previous JS did indent the license data
differently and a JSON key was changed, but the end result is the same
as it gets re-indented by wepack.
Co-authored-by: 6543 <6543@obermui.de>
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-authored-by: zeripath <art27@cantab.net>
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/.drone.yml b/.drone.yml index 086c196270..2b1d8cdd38 100644 --- a/.drone.yml +++ b/.drone.yml @@ -90,10 +90,7 @@ steps: - name: checks-backend image: golang:1.19 commands: - - curl -sL https://deb.nodesource.com/setup_18.x | bash - && apt-get -qqy install nodejs - make checks-backend - environment: - DEBIAN_FRONTEND: noninteractive depends_on: [deps-backend] volumes: - name: deps |