From 55feaab3c3bc5c2f1926d80fbbb0e2d707e13451 Mon Sep 17 00:00:00 2001 From: kk-min <76023265+kk-min@users.noreply.github.com> Date: Thu, 28 Mar 2024 15:45:03 +0800 Subject: [PATCH] test: remove legacy AWS tests --- .github/workflows/pipeline.yml | 54 ---------------------------------- 1 file changed, 54 deletions(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index c6764040d..bbe7329ba 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -69,60 +69,6 @@ jobs: path: build.tar retention-days: 1 - test_aws: - name: Unit tests (incl. AWS API tests) and AWS integration tests - needs: [ build_client ] - runs-on: ubuntu-22.04 - env: - working-directory: ./src - steps: - - - name: Check out code into the Go module directory - uses: actions/checkout@v2 - - - name: Configure AWS credentials using EASE lab account - uses: aws-actions/configure-aws-credentials@v1 - with: - aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY }} - aws-secret-access-key: ${{ secrets.AWS_SECRET_KEY }} - aws-region: us-west-1 - - - name: Set up Go 1.19 - uses: actions/setup-go@v2 - with: - go-version: 1.19 - - - name: Download client artifact - uses: actions/download-artifact@v2 - with: - name: STeLLAR-build - - - name: Untar client build - working-directory: ${{env.working-directory}} - run: tar --strip-components=1 -xvf ../build.tar -C . - - - name: Unit Tests - working-directory: ${{env.working-directory}} - run: go test -short -v ./... - - - name: Prepare benchmarking functions - run: | - mkdir -p "setup/deployment/raw-code" - cp -R ./src/setup/deployment/raw-code/functions setup/deployment/raw-code/functions - mkdir -p "./src/latency-samples" - - - name: AWS Burstiness ZIP (Package) Integration Test - working-directory: ${{env.working-directory}} - run: ./main --o latency-samples --c ../experiments/tests/aws/burstiness-zip-package.json - - - name: AWS Burstiness Image (Package) Integration Test - working-directory: ${{env.working-directory}} - run: ./main --o latency-samples --c ../experiments/tests/aws/burstiness-image-package.json - - - name: AWS Inline Data Transfer Integration Test - working-directory: ${{env.working-directory}} - run: ./main --o latency-samples --c ../experiments/tests/aws/data-transfer.json - test_vhive: name: vHive integration tests needs: [ build_client ]