This is an automated email from the ASF dual-hosted git repository. bzp2010 pushed a commit to branch bzp/ci-remove-node-port in repository https://gitbox.apache.org/repos/asf/apisix-ingress-controller.git
commit 87ecfa9f03905e251a384359062f3095b60e1c61 Author: bzp2010 <[email protected]> AuthorDate: Thu Sep 10 11:03:33 2026 +0800 ci: remove e2e for adc-node port --- .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
