diff options
| author | James Tucker <james@tailscale.com> | 2022-04-21 09:58:54 -0700 |
|---|---|---|
| committer | James Tucker <james@tailscale.com> | 2022-04-21 10:26:40 -0700 |
| commit | 20cd69097096ddfebd3b21c0d15d71d26e528186 (patch) | |
| tree | 34e0bd7fac0f269f82171d63b803ccaa94b5c3e5 /.github/workflows | |
| parent | 26fe00e7bd25f8fde4b70c146f483e60f38bd87a (diff) | |
| download | tailscale-cross-android.tar.xz tailscale-cross-android.zip | |
.github/workflows: add cross-androidcross-android
Fixes 4482
Signed-off-by: James Tucker <james@tailscale.com>
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/cross-android.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/cross-android.yml b/.github/workflows/cross-android.yml index d7a1b1024..dc9549fac 100644 --- a/.github/workflows/cross-android.yml +++ b/.github/workflows/cross-android.yml @@ -31,11 +31,11 @@ jobs: GOARCH: amd64 run: go build ./cmd/... - - name: Android build tests + - name: Android build tests (does not run tests) env: GOOS: android GOARCH: amd64 - run: for d in $(go list -f '{{if .TestGoFiles}}{{.Dir}}{{end}}' ./... ); do (echo $d; cd $d && go test -c ); done + run: for d in $(go list -f '{{if .TestGoFiles}}{{.Dir}}{{end}}' ./... ); do (echo $d; cd $d && go test -run '^$' -c ); done - uses: k0kubun/action-slack@v2.0.0 with: |
