Skip to content

Commit

Permalink
change: update dag-to-lua lib to version 1.1 (apache#423)
Browse files Browse the repository at this point in the history
  • Loading branch information
nic-chen authored Aug 28, 2020
1 parent 0dc28a1 commit ba185b9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/api_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ jobs:
- name: get lua lib
run: |
wget https://github.com/api7/dag-to-lua/archive/v1.0.tar.gz
wget https://github.com/api7/dag-to-lua/archive/v1.1.tar.gz
sudo mkdir -p /go/api7-manager-api/dag-to-lua/
tar -zxvf v1.0.tar.gz
sudo mv ./dag-to-lua-1.0/lib/* /go/api7-manager-api/dag-to-lua/
tar -zxvf v1.1.tar.gz
sudo mv ./dag-to-lua-1.1/lib/* /go/api7-manager-api/dag-to-lua/
- name: install runtime
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/api_cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ jobs:
- name: get lua lib
run: |
wget https://github.com/api7/dag-to-lua/archive/v1.0.tar.gz
wget https://github.com/api7/dag-to-lua/archive/v1.1.tar.gz
sudo mkdir -p /go/api7-manager-api/dag-to-lua/
tar -zxvf v1.0.tar.gz
sudo mv ./dag-to-lua-1.0/lib/* /go/api7-manager-api/dag-to-lua/
tar -zxvf v1.1.tar.gz
sudo mv ./dag-to-lua-1.1/lib/* /go/api7-manager-api/dag-to-lua/
- name: install runtime
run: |
Expand Down
6 changes: 3 additions & 3 deletions api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ RUN mkdir /go/manager-api \
&& ln -s /usr/share/zoneinfo/Hongkong /etc/localtime \
&& dpkg-reconfigure -f noninteractive tzdata

RUN wget https://github.com/api7/dag-to-lua/archive/v1.0.tar.gz \
&& tar -zxvf v1.0.tar.gz \
RUN wget https://github.com/api7/dag-to-lua/archive/v1.1.tar.gz \
&& tar -zxvf v1.1.tar.gz \
&& mkdir /go/manager-api/dag-to-lua \
&& mv ./dag-to-lua-1.0/lib/* /go/manager-api/dag-to-lua/
&& mv ./dag-to-lua-1.1/lib/* /go/manager-api/dag-to-lua/

FROM alpine:3.11

Expand Down

0 comments on commit ba185b9

Please sign in to comment.