From d804e3f528041ef558ea767caef82ab12a3b5074 Mon Sep 17 00:00:00 2001 From: Abiola Ibrahim Date: Sun, 12 Nov 2023 09:38:54 +0000 Subject: [PATCH] ci: remove aarch64, defer until proper m1 support --- .github/workflows/integration.yml | 89 ------------------------------- 1 file changed, 89 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 8b4f532a1..72352d5ff 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -139,51 +139,6 @@ jobs: - name: Teardown run: colima delete -f - docker-aarch64: - runs-on: macos-13 - steps: - - uses: actions/checkout@v4 - - - name: Set up Go - uses: actions/setup-go@v4 - with: - go-version: "1.21" - - - name: Install CLI deps - run: | - brew install kubectl docker coreutils lima - - - name: Build and Install - run: make && sudo make install - - - name: tmate debugging session - uses: mxschmitt/action-tmate@v3 - with: - limit-access-to-actor: true - github-token: ${{ secrets.GITHUB_TOKEN }} - if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled }} - - - name: Start Colima - run: colima start --runtime docker --arch aarch64 - - - name: Delay - run: sleep 20 - - - name: Validate Docker - run: docker ps && docker info - - - name: Build Image - run: docker build integration - - - name: Validate DNS - run: colima ssh -- nslookup host.docker.internal - - - name: Stop - run: colima stop - - - name: Teardown - run: colima delete -f - containerd: runs-on: macos-13 steps: @@ -229,47 +184,3 @@ jobs: - name: Teardown run: colima delete -f - containerd-aarch64: - runs-on: macos-13 - steps: - - uses: actions/checkout@v4 - - - name: Set up Go - uses: actions/setup-go@v4 - with: - go-version: "1.21" - - - name: Install CLI deps - run: | - brew install kubectl docker coreutils lima - - - name: Build and Install - run: make && sudo make install - - - name: tmate debugging session - uses: mxschmitt/action-tmate@v3 - with: - limit-access-to-actor: true - github-token: ${{ secrets.GITHUB_TOKEN }} - if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled }} - - - name: Start Colima - run: colima start --runtime containerd --arch aarch64 - - - name: Validate Containerd - run: colima nerdctl ps && colima nerdctl info - - - name: Validate DNS - run: colima ssh -- nslookup host.docker.internal - - - name: Build Image - run: colima nerdctl -- build integration - - - name: Delay - run: sleep 10 - - - name: Stop - run: colima stop - - - name: Teardown - run: colima delete -f