-
-
Notifications
You must be signed in to change notification settings - Fork 408
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Abiola Ibrahim <[email protected]>
- Loading branch information
Showing
1 changed file
with
0 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 |