Skip to content

Commit f5ef203

Browse files
committed
dump logs in github actions
1 parent e6f7e04 commit f5ef203

2 files changed

Lines changed: 15 additions & 4 deletions

File tree

.github/workflows/tests.yml

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,22 @@ jobs:
2121
- name: Start K3S
2222
run: make start-k3s
2323

24-
- name: Run load test
25-
run: make test-load
26-
2724
- name: Run conformance tests
2825
run: make test-conformance
2926

3027
- name: Run flaky conformance tests
3128
run: make test-conformance-flaky || true
29+
30+
- name: Store logs
31+
if: always()
32+
run: |
33+
mkdir output
34+
docker logs f8n > output/f8n-logs.txt || true
35+
docker logs k3s > output/k3s-logs.txt || true
36+
37+
- name: Upload artifact
38+
if: always()
39+
uses: actions/upload-artifact@v4
40+
with:
41+
name: build-results
42+
path: output/

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# F8N: K8S on FoundationDB
1+
# F8N: Kubernetes on FoundationDB
22

33
F8N is an etcdshim that translated etcd API to FoundationDB.
44

0 commit comments

Comments
 (0)