This is an automated email from the ASF dual-hosted git repository.
monkeydluffy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix.git
The following commit(s) were added to refs/heads/master by this push:
new 21599ac41 ci: fix start dubbo error (#10800)
21599ac41 is described below
commit 21599ac41305843ca1e8abe8b6ea413a6b87ce1f
Author: Liu Wei <[email protected]>
AuthorDate: Thu Jan 11 14:41:51 2024 +0800
ci: fix start dubbo error (#10800)
---
.github/workflows/build.yml | 1 +
.github/workflows/centos7-ci.yml | 1 +
.github/workflows/gm-cron.yaml | 1 +
.github/workflows/redhat-ci.yaml | 1 +
4 files changed, 4 insertions(+)
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 2c1bbcc9c..677a709eb 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -141,6 +141,7 @@ jobs:
- name: Start Dubbo Backend
if: matrix.os_name == 'linux_openresty' &&
(steps.test_env.outputs.type == 'plugin' || steps.test_env.outputs.type ==
'last')
run: |
+ sudo apt update
sudo apt install -y maven
cd t/lib/dubbo-backend
mvn package
diff --git a/.github/workflows/centos7-ci.yml b/.github/workflows/centos7-ci.yml
index 9f98a363f..b4adda547 100644
--- a/.github/workflows/centos7-ci.yml
+++ b/.github/workflows/centos7-ci.yml
@@ -99,6 +99,7 @@ jobs:
- name: Start Dubbo Backend
run: |
+ sudo apt update
sudo apt install -y maven
cd t/lib/dubbo-backend
mvn package
diff --git a/.github/workflows/gm-cron.yaml b/.github/workflows/gm-cron.yaml
index b90abaf14..67c3f65b7 100644
--- a/.github/workflows/gm-cron.yaml
+++ b/.github/workflows/gm-cron.yaml
@@ -124,6 +124,7 @@ jobs:
- name: Start Dubbo Backend
if: steps.test_env.outputs.type == 'plugin'
run: |
+ sudo apt update
sudo apt install -y maven
cd t/lib/dubbo-backend
mvn package
diff --git a/.github/workflows/redhat-ci.yaml b/.github/workflows/redhat-ci.yaml
index 547bfb1f1..35f608b07 100644
--- a/.github/workflows/redhat-ci.yaml
+++ b/.github/workflows/redhat-ci.yaml
@@ -95,6 +95,7 @@ jobs:
- name: Start Dubbo Backend
run: |
+ sudo apt update
sudo apt install -y maven
cd t/lib/dubbo-backend
mvn package