Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lxqt/ci
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/lxqt/ci
- Owner: lxqt
- Created: 2021-02-17T15:06:42.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-04-28T13:26:51.000Z (over 2 years ago)
- Last Synced: 2024-04-14T06:07:07.225Z (9 months ago)
- Language: Shell
- Size: 1.95 KB
- Stars: 1
- Watchers: 10
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Description
Common scripts for continuous integration of LXQt projects.
# Usage
LXQt projects uses GitHub Actions for CI. To use scripts from this repository, add the following step to `.github/workflows/test.yml` of each project.
```yaml
- name: Checkout shared CI repo
uses: actions/checkout@v2
with:
repository: lxqt/ci
path: shared-ci
```And then source common scripts in the build script `.ci/build.sh` for each project.
```sh
source shared-ci/prepare-archlinux.sh
```