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

Update to next version of gitlab-runner-rs #43

Open
wants to merge 9 commits into
base: main
Choose a base branch
from

Conversation

ColinKinloch
Copy link
Contributor

@ColinKinloch ColinKinloch commented Feb 27, 2025

Depends on collabora/gitlab-runner-rs#82
You can test this by uncommenting the following lines in Cargo.toml:

gitlab-runner = { path = "../gitlab-runner-rs/gitlab-runner" }
gitlab-runner-mock = { path = "../gitlab-runner-rs/gitlab-runner-mock" }

General

  • Changes tracing filter to print debug messages from gitlab-runner-rs and trace messages by default.
    This allows tests failing in gitlab-runner-rs give useful debug info.

v0.0.8

  • Support for multiple artifacts using UploadableFile
    Currently obs-glr stores artifacts using tempfile::tempfile() which removes the file on close. This means it's passing around tokio::Files which share their seek position between copies when cloned.
    I've switched this out for storing PathBufs.
  • Avoiding 'static lifetimes for artifact readers

v0.0.9

  • Generic tracing Layer<S> for GitlabLayer::new()
  • with_tracing macro to avoid trait bounds

@ColinKinloch ColinKinloch changed the title Update to gitlab-runner-rs > 0.1.0 Update to next version of gitlab-runner-rs Feb 27, 2025
@ColinKinloch ColinKinloch marked this pull request as draft March 12, 2025 12:52
@ColinKinloch ColinKinloch marked this pull request as ready for review March 12, 2025 17:58
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.
This makes `UploadableFile::get_data` async
@ColinKinloch
Copy link
Contributor Author

Currently a few test are failing when I run them locally.
I'm seeing the tokio error "too many open files".
I'll take a deeper look on Monday.

@ColinKinloch
Copy link
Contributor Author

The issue also exists on the main branch.
Bumping ulimit -n from 1024 to 1300 fixes my problem.
I've tried reverting to previous commits on this package and open-build-service-rs and the issue persists. I'm not sure what has changed.

@sjoerdsimons
Copy link
Contributor

The issue also exists on the main branch. Bumping ulimit -n from 1024 to 1300 fixes my problem.

you have a file descriptor limit of 1024? that's very oldschool, on modern systems it's essentially unlimited

@ColinKinloch
Copy link
Contributor Author

I assume it's the default in fedora. 🤔

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

4 participants