Skip to content

Commit

Permalink
Fix compilation directives (#207)
Browse files Browse the repository at this point in the history
A new version of the go compiler in the testing suit
requires an update of the compilation directives
  • Loading branch information
vorakl authored Apr 26, 2023
1 parent 3eb2a77 commit 0a01446
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions google_guest_agent/accounts_unix.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

//go:build !windows
// +build !windows

package main
Expand Down
1 change: 1 addition & 0 deletions google_guest_agent/addresses_integ_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

//go:build integration
// +build integration

package main
Expand Down
1 change: 1 addition & 0 deletions google_guest_agent/addresses_unix.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

//go:build !windows
// +build !windows

package main
Expand Down
1 change: 1 addition & 0 deletions google_guest_agent/addresses_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

//go:build windows
// +build windows

package main
Expand Down
1 change: 1 addition & 0 deletions google_guest_agent/instance_setup_integ_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

//go:build integration
// +build integration

package main
Expand Down
1 change: 1 addition & 0 deletions google_guest_agent/non_windows_accounts_integ_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

//go:build integration
// +build integration

package main
Expand Down
1 change: 1 addition & 0 deletions google_guest_agent/stub.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

//go:build !windows
// +build !windows

package main
Expand Down

0 comments on commit 0a01446

Please sign in to comment.