move to git.jakstys.lt
This commit is contained in:
parent
8f80dc49f5
commit
5797a93acd
19
.build.yml
19
.build.yml
|
@ -1,19 +0,0 @@
|
|||
image: alpine/edge
|
||||
packages:
|
||||
- go
|
||||
- git
|
||||
- make
|
||||
- shellcheck
|
||||
sources:
|
||||
- https://git.sr.ht/~motiejus/undocker
|
||||
tasks:
|
||||
- setup: |
|
||||
go install honnef.co/go/tools/cmd/staticcheck@latest
|
||||
- built-test-lint: |
|
||||
make -C undocker -O -j$(nproc) undocker coverage.html lint
|
||||
- usage: |
|
||||
# like 'grep -q', but prints output too.
|
||||
# | tee /dev/stderr doesn't work on sourcehut workers; permission denied.
|
||||
./undocker/undocker |& awk 'BEGIN{c=1};/Built with /{c=0};{print};END{exit c}'
|
||||
artifacts:
|
||||
- undocker/coverage.html
|
10
README.md
10
README.md
|
@ -1,5 +1,4 @@
|
|||
[![godocs.io](http://godocs.io/git.sr.ht/~motiejus/undocker?status.svg)](http://godocs.io/git.sr.ht/~motiejus/undocker)
|
||||
[![builds.sr.ht status](https://builds.sr.ht/~motiejus/undocker.svg)](https://builds.sr.ht/~motiejus/undocker?)
|
||||
[![godocs.io](http://godocs.io/git.jakstys.lt/motiejus/undocker?status.svg)](http://godocs.io/git.jakstys.lt/motiejus/undocker)
|
||||
|
||||
Undocker
|
||||
--------
|
||||
|
@ -106,8 +105,7 @@ rejected.
|
|||
Communication
|
||||
-------------
|
||||
|
||||
Use [~motiejus/undocker@lists.sr.ht](mailto:~motiejus/undocker@lists.sr.ht) for
|
||||
questions or patches. Subscribe [here][4].
|
||||
Feel free to ping me [directly][motiejus-comms].
|
||||
|
||||
LICENSE
|
||||
-------
|
||||
|
@ -116,5 +114,5 @@ MIT
|
|||
|
||||
[1]: https://www.freedesktop.org/software/systemd/man/systemd.exec.html
|
||||
[2]: https://fly.io/blog/docker-without-docker/
|
||||
[3]: http://git.sr.ht/~motiejus/undocker
|
||||
[4]: https://lists.sr.ht/~motiejus/undocker
|
||||
|
||||
[motiejus-comms]: https://jakstys.lt/contact/
|
||||
|
|
2
go.mod
2
go.mod
|
@ -1,3 +1,3 @@
|
|||
module git.sr.ht/~motiejus/undocker
|
||||
module git.jakstys.lt/motiejus/undocker
|
||||
|
||||
go 1.16
|
||||
|
|
2
main.go
2
main.go
|
@ -8,7 +8,7 @@ import (
|
|||
"path/filepath"
|
||||
"runtime"
|
||||
|
||||
"git.sr.ht/~motiejus/undocker/rootfs"
|
||||
"git.jakstys.lt/motiejus/undocker/rootfs"
|
||||
)
|
||||
|
||||
var Version = "unknown"
|
||||
|
|
|
@ -7,7 +7,7 @@ import (
|
|||
"reflect"
|
||||
"testing"
|
||||
|
||||
"git.sr.ht/~motiejus/undocker/rootfs/internal/tartest"
|
||||
"git.jakstys.lt/motiejus/undocker/rootfs/internal/tartest"
|
||||
)
|
||||
|
||||
type (
|
||||
|
|
Loading…
Reference in New Issue