diff --git a/.build.yml b/.build.yml deleted file mode 100644 index c2d12c3..0000000 --- a/.build.yml +++ /dev/null @@ -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 diff --git a/README.md b/README.md index 996bee0..e15b3bd 100644 --- a/README.md +++ b/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/ diff --git a/go.mod b/go.mod index 4067504..ef25472 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module git.sr.ht/~motiejus/undocker +module git.jakstys.lt/motiejus/undocker go 1.16 diff --git a/main.go b/main.go index 661d3f0..65d3ef1 100644 --- a/main.go +++ b/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" diff --git a/rootfs/rootfs_test.go b/rootfs/rootfs_test.go index df6b178..5134501 100644 --- a/rootfs/rootfs_test.go +++ b/rootfs/rootfs_test.go @@ -7,7 +7,7 @@ import ( "reflect" "testing" - "git.sr.ht/~motiejus/undocker/rootfs/internal/tartest" + "git.jakstys.lt/motiejus/undocker/rootfs/internal/tartest" ) type (