rpm: correctly obsolete older rpm builds #580
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: Go | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.20.x | |
- name: Build | |
run: make cross qemu-wrapper vm | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: gvisor-tap-vsock-binaries | |
path: bin/* | |
tests: | |
runs-on: macos-11 # Only Mac runners support nested virt | |
needs: build # Don't bother testing if cross arch build fails | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install | |
run: | | |
brew install qemu | |
touch continue | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.20.x | |
- name: Test | |
run: make test | |
- uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: qcon | |
path: test/qcon.log | |
win-sshproxy-tests: | |
runs-on: windows-latest # Only builds/runs on windows | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.20.x | |
- name: Build | |
run: go build -ldflags -H=windowsgui -o bin/win-sshproxy.exe ./cmd/win-sshproxy | |
- name: Test | |
run: go test -v .\test-win-sshproxy | |