diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2021-04-02 08:11:04 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-02 02:11:04 +0200 |
commit | 42efa14f51587542db9e118812171d2dcbe2b385 (patch) | |
tree | f549b971f6e41125c51973fc01123dd4c92f7ce0 /.drone.yml | |
parent | bc1f2117f1be539e971c90877658a8e456ce9e25 (diff) | |
download | gitea-42efa14f51587542db9e118812171d2dcbe2b385.tar.gz gitea-42efa14f51587542db9e118812171d2dcbe2b385.zip |
Introduce esbuild on webpack (#14578)
* Vendor node mods as cache; fix esbuild/fomantic offline build
* Fix --exclude; use bsdtar for consistent globbing
* Fall back to GNU tar; forward-compatible for APT 2.0
* Avoid having extd. attrs with bsdtar
* Dependency and misc. optimizations
* Remove extra code after esbuild-loader update
Co-authored-by: Mike L <cl.jeremy@qq.com>
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.drone.yml b/.drone.yml index 2a7173b361..52e9cf4859 100644 --- a/.drone.yml +++ b/.drone.yml @@ -495,7 +495,7 @@ steps: pull: always image: techknowlogick/xgo:go-1.16.x commands: - - curl -sL https://deb.nodesource.com/setup_14.x | bash - && apt -y install nodejs + - curl -sL https://deb.nodesource.com/setup_14.x | bash - && apt -y install nodejs bsdtar\|libarchive-tools - export PATH=$PATH:$GOPATH/bin - make release environment: @@ -591,7 +591,7 @@ steps: pull: always image: techknowlogick/xgo:go-1.16.x commands: - - curl -sL https://deb.nodesource.com/setup_14.x | bash - && apt -y install nodejs + - curl -sL https://deb.nodesource.com/setup_14.x | bash - && apt-get install -y nodejs bsdtar\|libarchive-tools - export PATH=$PATH:$GOPATH/bin - make release environment: |