I am trying to run some basic fileContentTests and fileExistenceTests on MacOS with tar driver
schemaVersion: 2.0.0
fileContentTests:
- name: "os-version"
path: "/etc/os-release"
expectedContents: [
'NAME="CentOS Linux"',
'ID="centos"',
'ID_LIKE="rhel fedora"',
'VERSION_ID="7"',
'CPE_NAME="cpe:/o:centos:centos:7"',
'HOME_URL="https://www.centos.org/"',
'BUG_REPORT_URL="https://bugs.centos.org/"',
'CENTOS_MANTISBT_PROJECT="CentOS-7"',
'CENTOS_MANTISBT_PROJECT_VERSION="7"',
'REDHAT_SUPPORT_PRODUCT="centos"',
'REDHAT_SUPPORT_PRODUCT_VERSION="7"',
]
With this bazel test setup
container_test(
name = "base-container-test-tar",
size = "small",
configs = ["testdata/base-container-test.yml"],
driver = "tar",
image = "@centos-7//image:image",
)
Which resulted in the following error
================================================
====== Test file: base-container-test.yml ======
================================================
time="2021-03-02T22:14:35Z" level=error msg="Error updating file permissions on /var/folders/l2/_dzk7hhs4gd9rpfb7c6hj63cc99qy8/T/..centos-7imageimage.tar@sha256:af9789f8f68cd80ff836d076542f4f22a519c43554c88d2a2710c174f29803a4312023790/usr/bin/chfn"
=== RUN: os-version
--- FAIL
duration: 0s
Error: error creating driver: processing tar image reference: getting filesystem for image: chmod /var/folders/l2/_dzk7hhs4gd9rpfb7c6hj63cc99qy8/T/..centos-7imageimage.tar@sha256:af9789f8f68cd80ff836d076542f4f22a519c43554c88d2a2710c174f29803a4312023790/usr/bin/chfn: operation not permitted
I am using bazel rules_docker on latest HEAD bazelbuild/rules_docker@e15c9eb
This test passed just fine when run on Linux + tar-driver or MacOS + docker-driver. But not MacOS + tar-driver.
I am trying to run some basic fileContentTests and fileExistenceTests on MacOS with tar driver
With this bazel test setup
Which resulted in the following error
I am using bazel rules_docker on latest HEAD bazelbuild/rules_docker@e15c9eb
This test passed just fine when run on Linux + tar-driver or MacOS + docker-driver. But not MacOS + tar-driver.