{"id":35161590,"url":"https://github.com/celerity/celerity-runtime-ci","last_synced_at":"2026-05-17T20:39:36.695Z","repository":{"id":210937181,"uuid":"392304533","full_name":"celerity/celerity-runtime-ci","owner":"celerity","description":"Continuous Integration setup for Celerity","archived":false,"fork":false,"pushed_at":"2024-11-14T12:43:03.000Z","size":606,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-12-31T05:43:01.116Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/celerity.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-08-03T12:08:53.000Z","updated_at":"2024-11-14T12:43:07.000Z","dependencies_parsed_at":"2023-12-19T16:17:11.120Z","dependency_job_id":"83935d46-c626-44dc-a365-ea8208b7e5ac","html_url":"https://github.com/celerity/celerity-runtime-ci","commit_stats":null,"previous_names":["celerity/celerity-runtime-ci"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/celerity/celerity-runtime-ci","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/celerity%2Fcelerity-runtime-ci","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/celerity%2Fcelerity-runtime-ci/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/celerity%2Fcelerity-runtime-ci/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/celerity%2Fcelerity-runtime-ci/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/celerity","download_url":"https://codeload.github.com/celerity/celerity-runtime-ci/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/celerity%2Fcelerity-runtime-ci/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33154241,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-17T09:28:26.183Z","status":"ssl_error","status_checked_at":"2026-05-17T09:27:52.702Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-12-28T18:15:45.098Z","updated_at":"2026-05-17T20:39:36.689Z","avatar_url":"https://github.com/celerity.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Celerity Docker CI\n\nInfrastructure for building and running Docker containers for Celerity CI.\n\nThis repository itself also uses GitHub actions to create new nightly builds\nof CI containers for all supported SYCL implementations.\n\n## Prerequisites\n\nDue to security considerations and limitations of GitHub's workflow definition\nfiles, we currently require the following prerequisites on the CI system:\n\n- Docker must be run [_rootless_](https://docs.docker.com/engine/security/rootless)\n    - The containers internally run as root, however this then just maps to\n      the user running the container on the host (which should *NOT* be root, obviously).\n- The `docker` executable must be _shimmed_ with our own [wrapper](docker-shim/docker)\n    - Make sure the shimmed executable is found first in `$PATH`\n    - The shimmed executable requires the environment variable\n      `CELERITY_CI_DOCKER_CREATE_OPTIONS` to be set (it can be empty -- see\n      below).\n\nThe [`check-prerequisites.sh`](check-prerequisites.sh) script can be used to\nverify the setup.\n\n## Building SYCL Container Images\n\nTo build a container for running Celerity CI for a given SYCL implementation,\nuse the [`build.sh`](build.sh) script.\n\nThe script creates two container images: One for building the SYCL\nimplementation itself, and another for subsequently compiling Celerity against\nthat SYCL implementation.\n\n## Platform-Specific Setup\n\nTo run containers with GPU access, platform-specific setup is required. In\nparticular, different options need to be passed to `docker create` (or\nequivalently `docker run`).\n\nSince the GitHub workflow definition files are rather inflexible regarding\nDocker options, we instead pass these options through the\n`CELERITY_CI_DOCKER_CREATE_OPTIONS` environment variable picked up by the\nshimmed Docker executable (see above).\n\n### Running on Intel\n\nTo access Intel integrated GPUs, the device file needs to be mounted into the\ncontainer. Set `CELERITY_CI_DOCKER_CREATE_OPTIONS=\"--device=/dev/dri/render*\"`\n(where `*` should be expanded manually).\n\n### Running on NVIDIA\n\nSet `CELERITY_CI_DOCKER_CREATE_OPTIONS=\"--gpus=all\"`.\n\nTo enable NVIDIA GPU passthrough, be sure to install the [NVIDIA Container\nRuntime](https://nvidia.github.io/nvidia-container-runtime/).\n\nTo make GPU passthrough work for rootless, as of Docker 19.03, `cgroups` need to\nbe disabled. This can be done by providing the\n`nvidia-container-runtime-hook-config.toml` file to the Docker runtime hook\nusing the `nvidia-container-runtime-hook` wrapper provided in this repository.\n\n## Automatic Pruning of Docker Images\n\nOver time, the CI setup will accumulate unused Docker container images.\nThese can fill up a drive pretty quickly, and it is recommended to prune them periodically.\nUse the `setup-cron.sh` script to install a crontab that periodically prunes old and unused images.\n\n## Interaction with celerity-runtime CMake\n\nBuilding and running examples against the installed Celerity Runtime is a bit finicky because which examples can be run depends on the exported configuration (e.g. `CELERITY_FEATURE_SIMPLE_SCALAR_REDUCTIONS`).\n\n`common/build-examples.sh` will attempt to build all subdirectories of the `examples` folder as standalone projects. If any of those reports an error containing the substring `Skip this test`, it will not propagate the non-zero status but continue without that build. This is currently used by the `reduction` example.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcelerity%2Fcelerity-runtime-ci","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcelerity%2Fcelerity-runtime-ci","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcelerity%2Fcelerity-runtime-ci/lists"}