build(deps): bump actions/upload-artifact from 2 to 4 #6109
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: Client build and unit tests | |
on: | |
- push | |
- pull_request | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
go: | |
- 1.13.x | |
- 1.16.x | |
- 1.17.x | |
os: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Test client package | |
env: | |
CGO_ENABLED: 0 | |
run: go test -v ./client/... | |
- name: Test lxc package | |
env: | |
CGO_ENABLED: 0 | |
run: go test -v ./lxc/... | |
- name: Test shared package | |
env: | |
CGO_ENABLED: 0 | |
run: go test -v ./shared/... | |
- name: Create build directory | |
run: | | |
mkdir bin | |
- name: Build static lxc | |
env: | |
CGO_ENABLED: 0 | |
run: | | |
go build -o bin ./lxc | |
- name: Build static lxd-p2c | |
if: runner.os == 'Linux' | |
env: | |
CGO_ENABLED: 0 | |
run: | | |
go build -o bin ./lxd-p2c | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
if: matrix.go == '1.17.x' | |
continue-on-error: true | |
with: | |
name: ${{ runner.os }} | |
path: bin/ |