mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-12-13 06:57:29 -06:00
Bumps [github.com/tdewolff/minify/v2](https://github.com/tdewolff/minify) from 2.21.2 to 2.21.3. - [Release notes](https://github.com/tdewolff/minify/releases) - [Commits](https://github.com/tdewolff/minify/compare/v2.21.2...v2.21.3) --- updated-dependencies: - dependency-name: github.com/tdewolff/minify/v2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
14 lines
593 B
YAML
14 lines
593 B
YAML
freebsd_task:
|
|
name: 'FreeBSD'
|
|
freebsd_instance:
|
|
image_family: freebsd-14-1
|
|
install_script:
|
|
- pkg update -f
|
|
- pkg install -y go
|
|
test_script:
|
|
# run tests as user "cirrus" instead of root
|
|
- pw useradd cirrus -m
|
|
- chown -R cirrus:cirrus .
|
|
- FSNOTIFY_BUFFER=4096 sudo --preserve-env=FSNOTIFY_BUFFER -u cirrus go test -parallel 1 -race ./...
|
|
- sudo --preserve-env=FSNOTIFY_BUFFER -u cirrus go test -parallel 1 -race ./...
|
|
- FSNOTIFY_DEBUG=1 sudo --preserve-env=FSNOTIFY_BUFFER -u cirrus go test -parallel 1 -race -v ./...
|