Skip to content

fix: setup-go in CI to resolve cache warnings #58

fix: setup-go in CI to resolve cache warnings

fix: setup-go in CI to resolve cache warnings #58

Workflow file for this run

name: CI
on:
push:
branches:
- main
paths-ignore:
- '**.md'
- 'src/**'
pull_request:
branches:
- main
paths-ignore:
- '**.md'
- 'contrib/**'
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:
- uses: actions/checkout@v3
with:
fetch-depth: 0
persist-credentials: false
submodules: true
- uses: actions/setup-go@v4
with:
go-version-file: e2e/go.mod
cache-dependency-path: e2e/go.sum
cache: true
- name: Clean up previous files
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: Build project
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
- run: make test-e2e