chore: optimize runs api #2095
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: e2e test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
e2e-linux: | |
name: e2e test on linux | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.22 | |
- name: Setup K3d | |
uses: nolar/[email protected] | |
- name: run e2e | |
run: make e2e-test OSTYPE=linux | |
e2e-windows: | |
name: e2e test on windows | |
runs-on: windows-latest | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.22 | |
- name: install K3d | |
shell: powershell | |
run: | | |
# Install scoop. | |
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser | |
Invoke-RestMethod -Uri https://get.scoop.sh | Invoke-Expression | |
# Install K3d. | |
scoop install k3d | |
- name: setup K3s | |
uses: knicknic/temp-kubernetes-ci@v1 | |
- name: run e2e | |
run: | | |
# Add kusion binary path into the user executable path. | |
$PATH = [Environment]::GetEnvironmentVariable("PATH") | |
$kusion_path="D:\a\kusion\kusion\bin" | |
[Environment]::SetEnvironmentVariable("PATH", "$PATH;$kusion_path") | |
make e2e-test OSTYPE=windows |