5 changed files with 20 additions and 45 deletions
@ -1,21 +0,0 @@
|
||||
arch: amd64 |
||||
environment: |
||||
PROJECT_DIR: '~/go/src/git.sr.ht/~tslocum' |
||||
PROJECT_NAME: 'desktop' |
||||
CGO_ENABLED: '0' |
||||
GO111MODULE: 'on' |
||||
image: freebsd/latest |
||||
packages: |
||||
- go |
||||
sources: |
||||
- https://git.sr.ht/~tslocum/desktop |
||||
tasks: |
||||
- setup: | |
||||
mkdir -p $PROJECT_DIR |
||||
mv $PROJECT_NAME $PROJECT_DIR/$PROJECT_NAME |
||||
- deps: | |
||||
cd $PROJECT_DIR/$PROJECT_NAME |
||||
go mod download |
||||
- test: | |
||||
cd $PROJECT_DIR/$PROJECT_NAME |
||||
go test ./... |
@ -1,21 +0,0 @@
|
||||
arch: x86_64 |
||||
environment: |
||||
PROJECT_DIR: '~/go/src/git.sr.ht/~tslocum' |
||||
PROJECT_NAME: 'desktop' |
||||
CGO_ENABLED: '0' |
||||
GO111MODULE: 'on' |
||||
image: alpine/edge |
||||
packages: |
||||
- go |
||||
sources: |
||||
- https://git.sr.ht/~tslocum/desktop |
||||
tasks: |
||||
- setup: | |
||||
mkdir -p $PROJECT_DIR |
||||
mv $PROJECT_NAME $PROJECT_DIR/$PROJECT_NAME |
||||
- deps: | |
||||
cd $PROJECT_DIR/$PROJECT_NAME |
||||
go mod download |
||||
- test: | |
||||
cd $PROJECT_DIR/$PROJECT_NAME |
||||
go test ./... |
@ -0,0 +1,8 @@
|
||||
stages: |
||||
- test |
||||
|
||||
test: |
||||
image: golang:latest |
||||
stage: test |
||||
script: |
||||
- go test -v ./... |
@ -1,8 +1,17 @@
|
||||
# desktop |
||||
[](https://godoc.org/git.sr.ht/~tslocum/desktop) |
||||
[](https://builds.sr.ht/~tslocum/desktop) |
||||
[](https://godoc.org/gitlab.com/tslocum/desktop) |
||||
[](https://gitlab.com/tslocum/desktop/commits/master) |
||||
[](https://liberapay.com/rocketnine.space) |
||||
|
||||
Desktop entry scanner and parser |
||||
|
||||
Linux is currently the only supported operating system. Windows support is planned. |
||||
|
||||
## Documentation |
||||
|
||||
Documentation is available via [gdooc](https://godoc.org/gitlab.com/tslocum/desktop). |
||||
|
||||
## Support |
||||
|
||||
Please share issues/suggestions [here](https://gitlab.com/tslocum/desktop/issues). |
||||
|
||||
|
Loading…
Reference in new issue