mirror of
https://github.com/NVIDIA/nvidia-container-toolkit
synced 2025-01-22 18:47:32 +00:00
dce368e308
Bumps [github.com/fsnotify/fsnotify](https://github.com/fsnotify/fsnotify) from 1.5.4 to 1.7.0. - [Release notes](https://github.com/fsnotify/fsnotify/releases) - [Changelog](https://github.com/fsnotify/fsnotify/blob/main/CHANGELOG.md) - [Commits](https://github.com/fsnotify/fsnotify/compare/v1.5.4...v1.7.0) --- updated-dependencies: - dependency-name: github.com/fsnotify/fsnotify dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
14 lines
479 B
YAML
14 lines
479 B
YAML
freebsd_task:
|
|
name: 'FreeBSD'
|
|
freebsd_instance:
|
|
image_family: freebsd-13-2
|
|
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 ./...
|