Update base image and extension versions #18
Merged
This check has been archived and is scheduled for deletion.
Learn more about checks retention
Travis CI / Travis CI - Branch
succeeded
Aug 17, 2023 in 11m 20s
Build Passed
The build passed. This is a change from the previous build, which failed.
Details
This is a normal build for the feat-update-versions branch. You should be able to reproduce it by checking out the branch locally.
Jobs and Stages
This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.
Build Configuration
Build Option | Setting |
---|---|
Language | Shell |
Operating System | Linux (Focal) |
Build Configuration
{
"language": "shell",
"os": [
"linux"
],
"dist": "focal",
"arch": [
"amd64"
],
"services": [
"docker"
],
"notifications": {
"email": [
{
"recipients": [
"team@appwrite.io"
]
}
]
},
"before_install": [
"curl -fsSL https://get.docker.com | sh",
"echo '{\"experimental\":\"enabled\"}' | sudo tee /etc/docker/daemon.json",
"mkdir -p $HOME/.docker",
"echo '{\"experimental\":\"enabled\"}' | sudo tee $HOME/.docker/config.json",
"sudo service docker start",
"curl -LO https://storage.googleapis.com/container-structure-test/latest/container-structure-test-linux-amd64 && chmod +x container-structure-test-linux-amd64 && sudo mv container-structure-test-linux-amd64 /usr/local/bin/container-structure-test",
"if [ ! -z \"${DOCKERHUB_PULL_USERNAME:-}\" ]; then\n echo \"${DOCKERHUB_PULL_PASSWORD}\" | docker login --username \"${DOCKERHUB_PULL_USERNAME}\" --password-stdin\nfi\n",
"docker --version"
],
"install": [
"docker build -t appwrite-base-test ."
],
"script": [
"container-structure-test test --image appwrite-base-test --config tests.yaml"
]
}
Loading