Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add initial DragonFly BSD support #230

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:

strategy:
matrix:
goos: [freebsd, openbsd, netbsd, darwin, solaris]
goos: [freebsd, openbsd, netbsd, dragonfly, darwin, solaris]

steps:
- name: Set up Go
Expand Down
4 changes: 2 additions & 2 deletions cmd/continuity/commands/mount_unsupported.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//go:build windows || solaris || openbsd || netbsd || darwin
// +build windows solaris openbsd netbsd darwin
//go:build windows || solaris || openbsd || netbsd || dragonfly || darwin
// +build windows solaris openbsd netbsd dragonfly darwin

/*
Copyright The containerd Authors.
Expand Down
4 changes: 2 additions & 2 deletions devices/mknod_freebsd.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//go:build freebsd
// +build freebsd
//go:build freebsd || dragonfly
// +build freebsd dragonfly

/*
Copyright The containerd Authors.
Expand Down
4 changes: 2 additions & 2 deletions driver/lchmod_unix.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//go:build darwin || freebsd || netbsd || openbsd || solaris
// +build darwin freebsd netbsd openbsd solaris
//go:build darwin || freebsd || netbsd || openbsd || dragonfly || solaris
// +build darwin freebsd netbsd openbsd dragonfly solaris

/*
Copyright The containerd Authors.
Expand Down
4 changes: 2 additions & 2 deletions fs/copy_unix.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//go:build darwin || freebsd || openbsd || netbsd || solaris
// +build darwin freebsd openbsd netbsd solaris
//go:build darwin || freebsd || openbsd || netbsd || dragonfly || solaris
// +build darwin freebsd openbsd netbsd dragonfly solaris

/*
Copyright The containerd Authors.
Expand Down
4 changes: 2 additions & 2 deletions fs/du_cmd_freebsddarwin_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//go:build freebsd || darwin
// +build freebsd darwin
//go:build freebsd || dragonfly || darwin
// +build freebsd dragonfly darwin

/*
Copyright The containerd Authors.
Expand Down
4 changes: 2 additions & 2 deletions fs/du_cmd_unix_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//go:build !windows && !freebsd && !darwin
// +build !windows,!freebsd,!darwin
//go:build !windows && !freebsd && !darwin && !dragonfly
// +build !windows,!freebsd,!darwin,!dragonfly

/*
Copyright The containerd Authors.
Expand Down
4 changes: 2 additions & 2 deletions fs/stat_atim.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//go:build linux || openbsd || solaris
// +build linux openbsd solaris
//go:build linux || openbsd || dragonfly || solaris
// +build linux openbsd dragonfly solaris

/*
Copyright The containerd Authors.
Expand Down