Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

E2E test optimization for multi-distro support #319

Merged
merged 27 commits into from
Mar 5, 2022
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
d3e65b2
Initial attempt at reworking e2e tests
YrrepNoj Feb 14, 2022
865e70f
adding the rest of the old e2e tests
YrrepNoj Feb 16, 2022
a439a6a
wip: cleaning up tests
YrrepNoj Feb 18, 2022
1c7e083
wip k3d, silly go mod
YrrepNoj Feb 18, 2022
fb82c4b
dear diary, did I do good?
jeff-mccoy Feb 18, 2022
d04a07b
change k3d version for testing to 5.2.1
YrrepNoj Feb 18, 2022
777dd64
cleanup e2e test for multi distro testing
YrrepNoj Feb 18, 2022
81df250
add unique github action for testing each e2e distro
YrrepNoj Feb 18, 2022
953d480
turns out its useful to build dependencies
YrrepNoj Feb 18, 2022
7390004
fix setup for k3s testing
YrrepNoj Feb 18, 2022
fc8f9e0
try to make k3s run as root during e2e pileine
YrrepNoj Feb 19, 2022
718a372
make sure we clean up kubeconfig after e2e test
YrrepNoj Feb 21, 2022
2083465
run k3s e2e test as root
YrrepNoj Feb 21, 2022
3bbde2d
wip, extend time and break apart build steps
YrrepNoj Feb 21, 2022
3ae1afe
doanlod dependencies early for k3s
YrrepNoj Feb 21, 2022
bf77ced
remove old e2e content
YrrepNoj Feb 22, 2022
107f10f
misc test code cleanup
YrrepNoj Feb 22, 2022
e604547
more test code cleanup
YrrepNoj Mar 1, 2022
e4874b7
add more docs to e2e README
YrrepNoj Mar 1, 2022
9a9e710
update key for registry1 e2e login
YrrepNoj Mar 1, 2022
d9b7a6c
Re-add cloud e2e test for the game example
YrrepNoj Mar 3, 2022
c13b70a
add k3s e2e workflow
YrrepNoj Mar 3, 2022
d077518
remove chat based e2e test
YrrepNoj Mar 4, 2022
e2bfd36
cleanup of e2e test code
YrrepNoj Mar 4, 2022
f6fc96c
Merge branch 'master' into 100-e2e-test-refresh
jeff-mccoy Mar 5, 2022
f915f8a
adr for e2e testing
YrrepNoj Mar 5, 2022
7aa6cd7
Merge branch 'master' into 100-e2e-test-refresh
jeff-mccoy Mar 5, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
doanlod dependencies early for k3s
  • Loading branch information
YrrepNoj committed Mar 1, 2022
commit 3ae1afe1e13cebd5a05009bc489a6fac73545c58
4 changes: 4 additions & 0 deletions .github/workflows/test-k3s.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ jobs:
go-version: 1.16.x
- name: Checkout Repo
uses: actions/checkout@v2
- name: Download dependences
run: |
go mod download
sudo go mod download
- name: Build CLI
run: make build-cli-linux
- name: Sign into Repo1
Expand Down