Skip to content

Commit

Permalink
debug2
Browse files Browse the repository at this point in the history
  • Loading branch information
Water-Melon committed Jun 25, 2024
1 parent 5f8036c commit 1e1426b
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 34 deletions.
30 changes: 0 additions & 30 deletions .github/workflows/test.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/version2_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
package: [apk, deb, rpm]
package: [deb]

env:
BASE: ${{ matrix.package }}
Expand Down
7 changes: 6 additions & 1 deletion Dockerfile.deb
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,12 @@ RUN set -ex; \
&& echo "${KONG_SHA256} /tmp/kong.deb" | sha256sum -c -; \
fi \
&& apt-get update \
&& apt-get install --yes /tmp/kong.deb \
&& apt-get install --yes /tmp/kong.deb lua5.1 liblua5.1-dev unzip make \
&& curl -L https://luarocks.org/releases/luarocks-3.8.0.tar.gz -o luarocks-3.8.0.tar.gz \
&& tar zxpf luarocks-3.8.0.tar.gz \
&& cd luarocks-3.8.0 \
&& ./configure && make && make install \
&& luarocks path --append /usr/local/lib/lua/5.1/5.1 \
&& rm -rf /var/lib/apt/lists/* \
&& rm -rf /tmp/kong.deb \
&& chown kong:0 /usr/local/bin/kong \
Expand Down
1 change: 0 additions & 1 deletion customize/packer.lua
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ local platforms = {
"apt install -y zip",
"apt install -y wget",
"apt install -y build-essential",
"apt install -y luarocks",
},
},
}
Expand Down
2 changes: 1 addition & 1 deletion ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ RUN set -ex; \
# Please update the ubuntu install docs if the below line is changed so that
# end users can properly install Kong along with its required dependencies
# and that our CI does not diverge from our docs.
&& apt install --yes /tmp/kong.deb \
&& apt install --yes /tmp/kong.deb luarocks\
&& rm -rf /var/lib/apt/lists/* \
&& rm -rf /tmp/kong.deb \
&& chown kong:0 /usr/local/bin/kong \
Expand Down

0 comments on commit 1e1426b

Please sign in to comment.