Skip to content

Commit

Permalink
ci: remove vz
Browse files Browse the repository at this point in the history
Signed-off-by: Abiola Ibrahim <[email protected]>
  • Loading branch information
abiosoft committed Apr 7, 2024
1 parent bf3c6e9 commit 461b396
Showing 1 changed file with 0 additions and 96 deletions.
96 changes: 0 additions & 96 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -195,99 +195,3 @@ jobs:

- name: Teardown
run: colima delete -f

docker-vz:
runs-on: macos-13
steps:
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.21"

- name: Install CLI deps
env:
HOMEBREW_NO_AUTO_UPDATE: "1"
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: "1"
run: |
brew install --overwrite [email protected] 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 --vm-type vz

- name: Delay
run: sleep 10

- name: Validate Docker
run: docker ps && docker info

- name: Validate DNS
run: colima ssh -- sh -c "sudo apt-get update -y -qq && sudo apt-get install -qq dnsutils && nslookup host.docker.internal"

- name: Build Image
run: docker build integration

- name: Stop
run: colima stop

- name: Teardown
run: colima delete -f

containerd-vz:
runs-on: macos-13
steps:
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.21"

- name: Install CLI deps
env:
HOMEBREW_NO_AUTO_UPDATE: "1"
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: "1"
run: |
brew install --overwrite [email protected] 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 --vm-type vz

- name: Delay
run: sleep 10

- name: Validate Containerd
run: colima nerdctl ps && colima nerdctl info

- name: Validate DNS
run: colima ssh -- sh -c "sudo apt-get update -y -qq && sudo apt-get install -qq dnsutils && nslookup host.docker.internal"

- name: Build Image
run: colima nerdctl -- build integration

- name: Stop
run: colima stop

- name: Teardown
run: colima delete -f

0 comments on commit 461b396

Please sign in to comment.