This is an automated email from the ASF dual-hosted git repository.
liuxiran pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-dashboard.git
The following commit(s) were added to refs/heads/master by this push:
new d1efdaf ci: add el7 in package name (#2074)
d1efdaf is described below
commit d1efdafe58d0a4727d51b270b9592aabc69cfad3
Author: Joey <[email protected]>
AuthorDate: Tue Aug 17 08:58:37 2021 +0800
ci: add el7 in package name (#2074)
Signed-off-by: imjoey <[email protected]>
---
.github/workflows/auto-build-rpm.yml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/auto-build-rpm.yml
b/.github/workflows/auto-build-rpm.yml
index bf88274..7658c17 100644
--- a/.github/workflows/auto-build-rpm.yml
+++ b/.github/workflows/auto-build-rpm.yml
@@ -45,7 +45,7 @@ jobs:
if [ "$VERSION" != "merge" && "$VERSION" != "master" ];then
export checkout=release/${VERSION}
fi
- make package type=rpm app=dashboard version=${VERSION}
checkout=${checkout}
+ make package type=rpm app=dashboard version=${VERSION}
checkout=${checkout} image_base=centos image_tag=7
- name: Run centos7 docker and mapping apisix into container
run: |
@@ -54,7 +54,7 @@ jobs:
- name: Install rpm package
run: |
export VERSION=${{ steps.branch_env.outputs.version }}
- docker exec centos7Instance bash -c "cd apisix-dashboard && yum
install -y ./apisix-build-tools/output/apisix-dashboard-${VERSION}-0.x86_64.rpm"
+ docker exec centos7Instance bash -c "cd apisix-dashboard && yum
install -y
./apisix-build-tools/output/apisix-dashboard-${VERSION}-0.el7.x86_64.rpm"
docker logs centos7Instance
# Dependencies are attached with rpm, so revert `make deps`
docker exec centos7Instance bash -c "cd /usr/local/apisix/dashboard/
&& nohup ./manager-api &"
@@ -67,4 +67,4 @@ jobs:
uses: actions/[email protected]
with:
name: "rpm"
- path: "./apisix-build-tools/output/apisix-dashboard-${{
steps.branch_env.outputs.version }}-0.x86_64.rpm"
+ path: "./apisix-build-tools/output/apisix-dashboard-${{
steps.branch_env.outputs.version }}-0.el7.x86_64.rpm"