Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create NOTICE #15

Merged
merged 1 commit into from
May 22, 2024

Create NOTICE

f3024a3
Select commit
Loading
Failed to load commit list.
Merged

Create NOTICE #15

Create NOTICE
f3024a3
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request required action May 22, 2024 in 1m 5s

Build Errored

The build errored. This is a change from the previous build, which passed.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #15 Create NOTICE.
Any changes that have been made to the master branch before the build ran are also included.

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 Generic
Operating System Linux (Xenial)
Build Configuration
{
  "language": "generic",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "addons": {
    "apt": {
      "update": true
    }
  },
  "jobs": {
    "include": [
      {
        "name": "Docker and Integration Tests",
        "os": "linux",
        "dist": "jammy",
        "services": [
          "docker"
        ],
        "env": [
          {
            "TAG": "`if [ $TRAVIS_BRANCH == \"master\" ]; then echo -n latest; else echo -n $TRAVIS_BRANCH; fi`"
          },
          {
            "REST_TAG": "$TAG"
          }
        ],
        "before_install": [
          "sudo systemctl stop docker.service && sudo systemctl stop docker.socket",
          "sudo apt-get install ca-certificates curl",
          "sudo install -m 0755 -d /etc/apt/keyrings",
          "sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc",
          "sudo chmod a+r /etc/apt/keyrings/docker.asc",
          "echo \\\n  \"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \\\n  $(. /etc/os-release && echo \"$VERSION_CODENAME\") stable\" | \\\n  sudo tee /etc/apt/sources.list.d/docker.list > /dev/null\n",
          "sudo apt-get update"
        ],
        "install": [
          "sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin"
        ],
        "before_script": [
          "echo $DOCKER_PASSWORD | docker login -u $DOCKER_USERNAME --password-stdin",
          "docker build . -t $TRAVIS_REPO_SLUG:$TAG"
        ],
        "after_success": [
          "if [ \"$TRAVIS_PULL_REQUEST\" = \"false\" ]; then\n  docker push $TRAVIS_REPO_SLUG:$TAG\nfi"
        ]
      }
    ]
  }
}