This is an automated email from the ASF dual-hosted git repository.
bzp2010 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-ingress-controller.git
The following commit(s) were added to refs/heads/master by this push:
new 0bd613ca ci: remove e2e for adc-node port (#2868)
0bd613ca is described below
commit 0bd613caee91fc52001cc32005a2e08d12975ee7
Author: Zeping Bai <[email protected]>
AuthorDate: Thu Sep 10 11:12:53 2026 +0800
ci: remove e2e for adc-node port (#2868)
---
.github/workflows/apisix-e2e-test.yml | 44 -----------------------------------
1 file changed, 44 deletions(-)
diff --git a/.github/workflows/apisix-e2e-test.yml
b/.github/workflows/apisix-e2e-test.yml
index 38b9a920..5c7faf60 100644
--- a/.github/workflows/apisix-e2e-test.yml
+++ b/.github/workflows/apisix-e2e-test.yml
@@ -30,16 +30,12 @@ concurrency:
cancel-in-progress: true
env:
- ADC_VERSION: dev
ADC_RUST_VERSION: "0.30.2"
jobs:
e2e-test:
strategy:
matrix:
- adc_impl:
- - node
- - rust
provider_type:
- apisix-standalone
- apisix
@@ -60,11 +56,6 @@ jobs:
with:
go-version: "1.26"
- - name: Setup Node.js
- uses: actions/setup-node@v3
- with:
- node-version: "*"
-
- name: Install kind
run: |
go install sigs.k8s.io/[email protected]
@@ -95,19 +86,7 @@ jobs:
run: |
make install
- - name: Setup adc (node)
- if: ${{ env.ADC_VERSION == 'dev' && matrix.adc_impl == 'node' }}
- run: |
- docker create --name adc-temp ghcr.io/api7/adc:dev
- # main.cjs lives in the image's WORKDIR, not at the container root,
- # and docker cp resolves a relative SRC_PATH against the root.
- docker cp "adc-temp:$(docker inspect -f '{{.Config.WorkingDir}}'
adc-temp)/main.cjs" adc.js
- docker rm adc-temp
- node $(pwd)/adc.js -v
- echo "ADC_BIN=node $(pwd)/adc.js" >> $GITHUB_ENV
-
- name: Setup adc (rust)
- if: ${{ matrix.adc_impl == 'rust' }}
run: |
curl -fsSL -o adc.tar.gz
"https://github.com/api7/adc/releases/download/v${{ env.ADC_RUST_VERSION
}}/adc_rust_${{ env.ADC_RUST_VERSION }}_linux_amd64.tar.gz"
tar -xzf adc.tar.gz adc
@@ -142,12 +121,6 @@ jobs:
fi
disable-gateway-api:
- strategy:
- matrix:
- adc_impl:
- - node
- - rust
- fail-fast: false
runs-on: ubuntu-latest
steps:
- name: Checkout
@@ -160,11 +133,6 @@ jobs:
with:
go-version: "1.26"
- - name: Setup Node.js
- uses: actions/setup-node@v3
- with:
- node-version: "*"
-
- name: Install kind
run: |
go install sigs.k8s.io/[email protected]
@@ -191,19 +159,7 @@ jobs:
run: |
make kind-load-images
- - name: Setup adc (node)
- if: ${{ env.ADC_VERSION == 'dev' && matrix.adc_impl == 'node' }}
- run: |
- docker create --name adc-temp ghcr.io/api7/adc:dev
- # main.cjs lives in the image's WORKDIR, not at the container root,
- # and docker cp resolves a relative SRC_PATH against the root.
- docker cp "adc-temp:$(docker inspect -f '{{.Config.WorkingDir}}'
adc-temp)/main.cjs" adc.js
- docker rm adc-temp
- node $(pwd)/adc.js -v
- echo "ADC_BIN=node $(pwd)/adc.js" >> $GITHUB_ENV
-
- name: Setup adc (rust)
- if: ${{ matrix.adc_impl == 'rust' }}
run: |
curl -fsSL -o adc.tar.gz
"https://github.com/api7/adc/releases/download/v${{ env.ADC_RUST_VERSION
}}/adc_rust_${{ env.ADC_RUST_VERSION }}_linux_amd64.tar.gz"
tar -xzf adc.tar.gz adc