Skip to content

Commit f67acf9

Browse files
Merge pull request containers#6267 from rahilarious/main
Remove BUILDTAG btrfs_noversion as no longer effective
2 parents 68c0bba + 7a482ac commit f67acf9

File tree

4 files changed

+5
-12
lines changed

4 files changed

+5
-12
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export GOPROXY=https://proxy.golang.org
22

33
APPARMORTAG := $(shell hack/apparmor_tag.sh)
4-
STORAGETAGS := $(shell ./btrfs_tag.sh) $(shell ./btrfs_installed_tag.sh) $(shell ./hack/libsubid_tag.sh)
4+
STORAGETAGS := $(shell ./btrfs_installed_tag.sh) $(shell ./hack/libsubid_tag.sh)
55
SECURITYTAGS ?= seccomp $(APPARMORTAG)
66
TAGS ?= $(SECURITYTAGS) $(STORAGETAGS) $(shell ./hack/systemd_tag.sh) $(shell ./hack/sqlite_tag.sh)
77
ifeq ($(shell uname -s),FreeBSD)

btrfs_tag.sh

Lines changed: 0 additions & 7 deletions
This file was deleted.

rpm/buildah.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ export LDFLAGS="-X main.buildInfo=`date +%s` -X main.cniVersion=${CNI_VERSION}"
125125

126126
export BUILDTAGS="seccomp $(hack/systemd_tag.sh) $(hack/libsubid_tag.sh) libsqlite3"
127127
%if !%{defined build_with_btrfs}
128-
export BUILDTAGS+=" btrfs_noversion exclude_graphdriver_btrfs"
128+
export BUILDTAGS+=" exclude_graphdriver_btrfs"
129129
%endif
130130

131131
%if %{defined fips}

tests/conformance/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ docker pull registry.fedoraproject.org/fedora-minimal
2929

3030
You can run all of the tests with go test (and under `buildah unshare` or `podman unshare` if you're not root):
3131
```
32-
go test -v -timeout=30m -tags "$(./btrfs_tag.sh) $(./btrfs_installed_tag.sh)" ./tests/conformance
32+
go test -v -timeout=30m -tags "$(./btrfs_installed_tag.sh)" ./tests/conformance
3333
```
3434

3535
If you want to run one of the test cases you can use the "-run" flag:
3636
```
37-
go test -v -timeout=30m -tags "$(./btrfs_tag.sh) $(./btrfs_installed_tag.sh)" -run TestConformance/shell ./tests/conformance
37+
go test -v -timeout=30m -tags "$(./btrfs_installed_tag.sh)" -run TestConformance/shell ./tests/conformance
3838
```
3939

4040
If you also want to build and compare on a line-by-line basis, run:
4141
```
42-
go test -v -timeout=60m -tags "$(./btrfs_tag.sh) $(./btrfs_installed_tag.sh)" ./tests/conformance -compare-layers
42+
go test -v -timeout=60m -tags "$(./btrfs_installed_tag.sh)" ./tests/conformance -compare-layers
4343
```

0 commit comments

Comments
 (0)