From e9aac88a0864f15ff47949f6c162ec9cec034d33 Mon Sep 17 00:00:00 2001 From: Leon Date: Sun, 12 Jan 2020 09:00:47 +1030 Subject: [PATCH 1/2] CI to build OpenBSD binaries - copied format from https://github.com/gohugoio/hugo/blob/master/goreleaser.yml - used same replacement format as existing OS's --- .goreleaser.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.goreleaser.yml b/.goreleaser.yml index ad7ba6f..ab94458 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -7,6 +7,7 @@ builds: - windows - darwin - linux + - openbsd goarch: - 386 - amd64 @@ -30,6 +31,7 @@ archive: windows: windows 386: i386 amd64: amd64 + openbsd: openbsd format_overrides: - goos: windows format: zip From d3fbe3690046a611808c3bad5272b2aa9988291d Mon Sep 17 00:00:00 2001 From: Leon Date: Sun, 12 Jan 2020 09:06:09 +1030 Subject: [PATCH 2/2] OpenBSD install notes to README --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index b87a933..b0940e4 100644 --- a/README.md +++ b/README.md @@ -37,6 +37,13 @@ By default this will install `htmltest` into `./bin` of your current directory, :arrow_down: Download the [latest binary release](https://github.com/wjdp/htmltest/releases/latest) and put it somewhere on your PATH. +### :blowfish: OpenBSD + +:arrow_down: Download the [latest binary release](https://github.com/wjdp/htmltest/releases/latest) and put it somewhere on your PATH. + +You can also build from sources by cloning this repo and running `sh build.sh`, which puts the `htmltest` executable in the `./bin` dir. Use in place, or install to path such as `/usr/local/bin`. + + ### :whale: Docker ```docker run -v $(pwd):/test --rm wjdp/htmltest```