mirror of
https://github.com/mindoc-org/mindoc.git
synced 2026-02-27 17:03:57 +08:00
12 lines
344 B
Bash
12 lines
344 B
Bash
# Copyright 2014 The zappy Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style
|
|
# license that can be found in the LICENSE file.
|
|
|
|
set -e
|
|
set -v
|
|
|
|
CGO_ENABLED=0 go test -purego true
|
|
CGO_ENABLED=0 go test -purego true -tags purego
|
|
CGO_ENABLED=1 go test -purego false
|
|
CGO_ENABLED=1 go test -purego true -tags purego
|