Skip to content

Commit

Permalink
Merge pull request #230 from tuxillo/feat-add-initial-dragonflybsd-su…
Browse files Browse the repository at this point in the history
…pport

Add initial DragonFly BSD support
  • Loading branch information
samuelkarp committed Aug 19, 2023
2 parents 1e0d26e + bcc6e25 commit 77a2d47
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 15 deletions.
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

0 comments on commit 77a2d47

Please sign in to comment.