Signed-off-by: Sebastien Binet <s@sbinet.org>
---
.builds/freebsd.yml | 15 +++++++++++++++
1 file changed, 15 insertions(+)
create mode 100644 .builds/freebsd.yml
diff --git a/.builds/freebsd.yml b/.builds/freebsd.yml
new file mode 100644
index 0000000..90cc1ab
--- /dev/null
+++ b/.builds/freebsd.yml
@@ -0,0 +1,15 @@
+# SPDX-License-Identifier: Unlicense OR MIT
+image: freebsd/11.x
+packages:
+sources:
+ - https://git.sr.ht/~sbinet/star-tex
+environment:
+ GOFLAGS: -mod=readonly
+ PATH: /home/build/sdk/go/bin:/bin:/usr/local/bin:/usr/bin
+tasks:
+ - install_go1_16: |
+ mkdir -p /home/build/sdk
+ curl -L https://golang.org/dl/go1.16.freebsd-amd64.tar.gz | tar -C /home/build/sdk -xzf -
+ - test_project: |
+ cd star-tex
+ go test ./...
--
2.30.1