ci(deps): bump docker/setup-buildx-action from 2 to 3 #173
Workflow file for this run
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
name: CI | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '**.md' | |
- 'src/**' | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- '**.md' | |
- 'contrib/**' | |
- 'Dockerfile' | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
e2e-tests: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [[self-hosted, macos, amd64, 13, test], [self-hosted, macos, amd64, 12, test], [self-hosted, macos, arm64, 13, test], [self-hosted, macos, arm64, 12, test]] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
persist-credentials: false | |
submodules: true | |
- name: Setup go | |
uses: actions/setup-go@v4 | |
with: | |
go-version-file: e2e/go.mod | |
cache-dependency-path: e2e/go.sum | |
- name: Clean up previous files | |
shell: zsh {0} | |
run: | | |
sudo rm -rf ~/.lima | |
sudo rm -rf ./_output | |
if pgrep '^qemu-system'; then | |
sudo pkill '^qemu-system' | |
fi | |
if pgrep '^socket_vmnet'; then | |
sudo pkill '^socket_vmnet' | |
fi | |
- name: Install dependencies | |
shell: zsh {0} | |
run: brew install go lz4 automake autoconf libtool | |
- name: Build project | |
shell: zsh {0} | |
run: | | |
export PATH="/opt/homebrew/opt/libtool/libexec/gnubin:$PATH" | |
which libtool | |
# Install socket_vmnet to `_output/bin` which is used in $PATH | |
SOCKET_VMNET_TEMP_PREFIX=$(pwd)/_output/ make lima-socket-vmnet | |
make install.lima-dependencies binaries | |
- name: Run e2e tests | |
shell: zsh {0} | |
run: make test-e2e |