We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6f7e04 commit f5ef203Copy full SHA for f5ef203
2 files changed
.github/workflows/tests.yml
@@ -21,11 +21,22 @@ jobs:
21
- name: Start K3S
22
run: make start-k3s
23
24
- - name: Run load test
25
- run: make test-load
26
-
27
- name: Run conformance tests
28
run: make test-conformance
29
30
- name: Run flaky conformance tests
31
run: make test-conformance-flaky || true
+
+ - name: Store logs
+ 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
39
+ uses: actions/upload-artifact@v4
40
+ with:
41
+ name: build-results
42
+ path: output/
README.md
@@ -1,4 +1,4 @@
1
-# F8N: K8S on FoundationDB
+# F8N: Kubernetes on FoundationDB
2
3
F8N is an etcdshim that translated etcd API to FoundationDB.
4
0 commit comments