-
Notifications
You must be signed in to change notification settings - Fork 5
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
Update to next version of gitlab-runner-rs #43
base: main
Are you sure you want to change the base?
Conversation
e66a22b
to
cfbab52
Compare
When tests fail the logging from gitlab-runner-rs is likely useful. * trace for obs_gitlab_runner * debug for gitlab_runner * warn for anything else
Print attempt number on subsequent commit attempts
GitlabLayer is replaced with with Filtered<GitlabLayer, _, _> in gitlab-runner-rs 0.0.9. Replacing `with_tracing` with a macro simplifys resolving trait bounds.
* Use `HashSet` to avoid duplicate artifacts, implement hashing and equality based on the file path. * Store artifacts using `NamedTempFile`s and refer to them using their paths. * Add `ObsArtifact` type for storing artifacts either in memory or as files, 0.0.8 adds the `UploadableFile` type for actifacts. * Add explicit lifetime rather than `'static` to `ArtifactDirectory::Reader` to avoid having to copy in many cases. * In the default implementation of the `ArtifactDirectory` trait use `get_file_or_none` rather than `get` for `get_file`. This commit requires async `UploadableFile::get_data` from gitlab-runner-rs 0.2.0 in order to open artifacts files.
This will delete them once the job is completed.
Update zip to 2.2.3
This makes `UploadableFile::get_data` async
d0fdb17
to
f076056
Compare
Currently a few test are failing when I run them locally. |
The issue also exists on the |
you have a file descriptor limit of 1024? that's very oldschool, on modern systems it's essentially unlimited |
I assume it's the default in fedora. 🤔 |
Depends on collabora/gitlab-runner-rs#82
You can test this by uncommenting the following lines in
Cargo.toml
:General
debug
messages fromgitlab-runner-rs
andtrace
messages by default.This allows tests failing in
gitlab-runner-rs
give useful debug info.v0.0.8
UploadableFile
Currently obs-glr stores artifacts using
tempfile::tempfile()
which removes the file on close. This means it's passing aroundtokio::File
s which share their seek position between copies when cloned.I've switched this out for storing
PathBuf
s.'static
lifetimes for artifact readersv0.0.9
Layer<S>
forGitlabLayer::new()
with_tracing
macro to avoid trait bounds