https://github.com/gsconnect/gsconnect-ci
GSConnect CI Container
https://github.com/gsconnect/gsconnect-ci
Last synced: 3 months ago
JSON representation
GSConnect CI Container
- Host: GitHub
- URL: https://github.com/gsconnect/gsconnect-ci
- Owner: GSConnect
- License: mit
- Created: 2020-09-15T04:50:06.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2025-04-23T14:29:53.000Z (about 1 year ago)
- Last Synced: 2025-04-23T15:39:15.721Z (about 1 year ago)
- Language: Dockerfile
- Size: 31.3 KB
- Stars: 8
- Watchers: 3
- Forks: 4
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GSConnect CI
Docker image for [GSConnect][gsconnect] CI.
[gsconnect]: https://github.com/andyholmes/gnome-shell-extension-gsconnect
## GitHub Container Registry
Images are automatically deployed from release tags/branches
to the GitHub Container Registry.
The latest image will be listed under "Packages" on the repo homepage.
To use from another GitHub Actions workflow:
```yaml
jobs:
build:
runs-on: ubuntu-latest
container:
image: ghcr.io/gsconnect/gsconnect-ci:latest
steps:
- uses: actions/checkout@v2
- name: Prep environment
run: >
meson --prefix=/usr
--libdir=lib/
-Dgnome_shell_libdir=/usr/lib
-Dpost_install=true
_build
- name: Run uninstalled tests
run: >
meson test -C _build
--suite gsconnect:data
--suite gsconnect:lint
--print-errorlogs
- name: Run installed tests
run: |
ninja -C _build install
xvfb-run -a dbus-run-session -- \
gnome-desktop-testing-runner gsconnect -L _build/meson-logs
```