Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-04-05T00:30:45.000Z (7 months ago)
- Last Synced: 2024-05-01T16:27:56.188Z (7 months ago)
- Language: Dockerfile
- Size: 12.7 KB
- Stars: 3
- Watchers: 4
- Forks: 4
- Open Issues: 1
-
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
```