Commit 45c0d70f authored by Jakob Unterwurzacher's avatar Jakob Unterwurzacher

Rewrite defunct all.bash

all.bash is broken for some time now (since the move to v2?).
Rewrite and simplify it using "./..." syntax.

And add the binaries that are generated to gitignore.

all.bash will be used in the upcomming patch for Github Actions CI.

Change-Id: Ia1b2e6bc60486b419408d4efd50bef4b8dd62bae
parent 61df8108
...@@ -14,3 +14,6 @@ example/bulkstat/bulkstat ...@@ -14,3 +14,6 @@ example/bulkstat/bulkstat
example/zipfs/zipfs example/zipfs/zipfs
# test binaries # test binaries
*.test *.test
benchmark/bulkstat.bin
benchmark/bulkstat/main
benchmark/cstatfs
#!/bin/sh #!/bin/sh
set -eu set -eux
for d in fuse fuse/nodefs fuse/pathfs fuse/test zipfs unionfs \ # Everything must compile on Linux
example/hello example/loopback example/zipfs \ go build ./...
example/multizip example/unionfs example/memfs \
example/autounionfs example/statfs ; \
do
go build -o /dev/null github.com/hanwen/go-fuse/${d}
done
# Not everything compiles on MacOS (try GOOS=darwin go build ./...).
# But our key packages should.
GOOS=darwin go build ./fuse/... ./fs/... ./example/loopback/...
for d in fuse zipfs unionfs fuse/test # Run the tests. Why the flags:
do # -timeout 5m ... Get a backtrace on a hung test before the CI system kills us
( # -p 1 .......... Run tests serially, which also means we get live output
cd $d # instead of per-package buffering.
# -count 1 ...... Disable result caching, so we can see flakey tests
# Make sure it compiles on all platforms. go test -timeout 5m -p 1 -count 1 ./...
for GOOS in darwin linux ; do
export GOOS
go test -c -i github.com/hanwen/go-fuse/$d
done
echo "go test github.com/hanwen/go-fuse/$d"
go test github.com/hanwen/go-fuse/$d
echo "go test -race github.com/hanwen/go-fuse/$d"
go test -race github.com/hanwen/go-fuse/$d
)
done
for target in "clean" "install" ; do
for d in fuse fuse/nodefs fuse/pathfs fuse/test zipfs unionfs \
example/hello example/loopback example/zipfs \
example/multizip example/unionfs example/memfs \
example/autounionfs example/statfs ; \
do
if test "${target}" = "install" && test "${d}" = "fuse/test"; then
continue
fi
echo "go ${target} github.com/hanwen/go-fuse/${d}"
go ${target} github.com/hanwen/go-fuse/${d}
done
done
make -C benchmark make -C benchmark
for d in benchmark go test ./benchmark -test.bench '.*' -test.cpu 1,2
do
go test github.com/hanwen/go-fuse/benchmark -test.bench '.*' -test.cpu 1,2
done
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment