Ensure that telepresence upgrade uses helm semantics for reuse/reset. #3799
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: "Build and Unit test" | |
on: | |
pull_request_target: | |
env: | |
HOMEBREW_NO_INSTALL_FROM_API: | |
jobs: | |
macos: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
ref: "${{ github.event.pull_request.head.sha }}" | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: stable | |
- name: "Install dependencies" | |
env: | |
HOMEBREW_NO_INSTALL_FROM_API: "" | |
run: | | |
brew untap homebrew/core || true | |
brew untap homebrew/cask || true | |
brew update | |
brew install --cask macfuse | |
- name: Lint | |
run: make lint | |
- name: "Test arm64 build" | |
run: GOARCH=arm64 make build | |
- name: "Test amd64 build" | |
run: make build | |
- name: Run tests | |
uses: nick-fields/retry/@v2 | |
with: | |
max_attempts: 3 | |
timeout_minutes: 12 | |
command: | | |
make check-unit | |
windows: | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
ref: "${{ github.event.pull_request.head.sha }}" | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: stable | |
- name: "Download winfsp" | |
shell: bash | |
run: | | |
curl -L -o winfsp.msi https://github.com/winfsp/winfsp/releases/download/v1.11/winfsp-1.11.22176.msi | |
- name: "Install winfsp" | |
shell: powershell | |
run: | | |
Start-Process msiexec -Wait -verb runAs -Args "/i winfsp.msi /passive /qn /L*V winfsp-install.log" | |
[Environment]::SetEnvironmentVariable("Path", "C:\\Program Files (x86)\\WinFsp\\inc\\fuse;$ENV:Path", "Machine") | |
- name: install make | |
run: choco install make | |
- name: Build | |
run: make build | |
- name: Lint | |
run: make lint | |
- name: Run tests | |
uses: nick-fields/retry/@v2 | |
with: | |
max_attempts: 3 | |
timeout_minutes: 12 | |
command: | | |
$ENV:DTEST_KUBECONFIG = "${{ steps.kluster.outputs.kubeconfig }}" | |
$ENV:DTEST_REGISTRY = "docker.io/datawire" | |
make check-unit | |
linux-amd64: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
ref: "${{ github.event.pull_request.head.sha }}" | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: stable | |
- run: | | |
sudo rm -f /etc/apt/sources.list.d/google-chrome.list | |
sudo apt-get update | |
sudo apt-get install -y socat make jq | |
- name: Lint | |
run: make lint | |
- name: "Test amd64 build" | |
run: make build | |
- name: Run tests | |
uses: nick-fields/retry/@v2 | |
with: | |
max_attempts: 3 | |
timeout_minutes: 10 | |
command: | | |
make check-unit | |
linux-arm64: | |
runs-on: ubuntu-arm64 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
ref: "${{ github.event.pull_request.head.sha }}" | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: stable | |
- run: | | |
sudo rm -f /etc/apt/sources.list.d/google-chrome.list | |
sudo apt-get update | |
sudo apt-get install -y socat gcc-aarch64-linux-gnu binutils-aarch64-linux-gnu make jq | |
- name: Lint | |
run: make lint | |
- name: "Test arm64 build" | |
run: GOARCH=arm64 CC=aarch64-linux-gnu-gcc make build | |
- name: Run tests | |
uses: nick-fields/retry/@v2 | |
with: | |
max_attempts: 3 | |
timeout_minutes: 10 | |
command: | | |
make check-unit |