Skip to content

Commit

Permalink
microbit: add CI build exclusion directives to new Microbit examples
Browse files Browse the repository at this point in the history
Signed-off-by: deadprogram <[email protected]>
  • Loading branch information
deadprogram committed Mar 20, 2017
1 parent 5590c67 commit 647b3e3
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 0 deletions.
4 changes: 4 additions & 0 deletions examples/microbit_accelerometer.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// +build example
//
// Do not build by default.

package main

import (
Expand Down
4 changes: 4 additions & 0 deletions examples/microbit_buttons.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// +build example
//
// Do not build by default.

package main

import (
Expand Down
4 changes: 4 additions & 0 deletions examples/microbit_buttons_leds.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// +build example
//
// Do not build by default.

package main

import (
Expand Down
4 changes: 4 additions & 0 deletions examples/microbit_led.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// +build example
//
// Do not build by default.

package main

import (
Expand Down
4 changes: 4 additions & 0 deletions examples/microbit_magnetometer.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// +build example
//
// Do not build by default.

package main

import (
Expand Down
4 changes: 4 additions & 0 deletions examples/microbit_temperature.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// +build example
//
// Do not build by default.

package main

import (
Expand Down

0 comments on commit 647b3e3

Please sign in to comment.