Add matrix tests for dtable-server implementations - #82
Draft
simonhammes wants to merge 12 commits into
Draft
Conversation
Error response from daemon: failed to create task for container: failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: error during container init: error mounting /home/runner/work/openapi/openapi/version-compare/seatable-license.txt to rootfs at /shared/seatable/seatable-license.txt: create mountpoint for /shared/seatable/seatable-license.txt mount: make mountpoint /shared/seatable/seatable-license.txt: openat seatable-license.txt: file exists This might be related to docker/compose#11663
simonhammes
commented
Aug 28, 2026
| test: | ||
| runs-on: ubuntu-latest | ||
| name: "test (dtable-server-${{ matrix.implementation }})" | ||
| runs-on: ubuntu-26.04 |
Collaborator
Author
There was a problem hiding this comment.
I updated the runner images from ubuntu-latest (which pointed to 24.04 at the time of writing) to ubuntu-26.04 to work around the following race condition that happened in CI:
Error response from daemon: failed to create task for container: failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: error during container init: error mounting "/home/runner/work/openapi/openapi/version-compare/seatable-license.txt" to rootfs at "/shared/seatable/seatable-license.txt": create mountpoint for /shared/seatable/seatable-license.txt mount: make mountpoint "/shared/seatable/seatable-license.txt": openat seatable-license.txt: file exists
This might have been caused by a bug in runc (opencontainers/runc#4543) that was patched in 2024 (opencontainers/runc#4549)
simonhammes
commented
Aug 28, 2026
Comment on lines
+115
to
+121
| location = /dtable-server/ping/ { | ||
| # Configuring a resolver + storing the hostname in a variable is necessary | ||
| # in order to prevent NGINX from starting up in case the hostname cannot be resolved | ||
| resolver 127.0.0.11 valid=30s; | ||
| set $dtable_server_upstream dtable-server; | ||
| proxy_pass http://$dtable_server_upstream:5000/ping/; | ||
| } |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
End goal: Have matrix tests for both implementations with 0 regressions :)