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

MFW-4069: Dynamic Blocklists: Add to Active Sessions #329

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Added dynamic lists to active sessions

51d5f76
Select commit
Loading
Failed to load commit list.
Open

MFW-4069: Dynamic Blocklists: Add to Active Sessions #329

Added dynamic lists to active sessions
51d5f76
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch succeeded Dec 6, 2023 in 5m 25s

Build Passed

The build passed.

Details

This is a normal build for the MFW-4069 branch. You should be able to reproduce it by checking out the branch locally.

Jobs and Stages

This build has three jobs, running in two sequential stages.

Stage 1: test

This stage passed.

Job ENV OS State
3397.1 DOCKER_PASSWORD=[secure] Linux passed
3397.2 DOCKER_PASSWORD=[secure] Linux passed

Stage 2: deploy

This stage passed.

Job ENV OS State
3397.3 DOCKER_PASSWORD=[secure] Linux passed

Build Configuration

Build Option Setting
Language Ruby
Operating System Linux (Focal)
Build Configuration
{
  "language": "ruby",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "sudo": true,
  "env": [
    "global=DOCKER_PASSWORD=[secure]={:DOCKER_USERNAME=>\"untangleengineering\"}={:GOPATH=>\"\\\"${HOME}/go\\\"\"}={:DIR=>\"\\\"${GOPATH}/src/github.com/untangle\\\"\"}=UNTANGLE_BOT_OATH_TOKEN=[secure] jobs={:TARGET=>\"glibc\"}={:TARGET=>\"musl\"}"
  ],
  "services": [
    "docker"
  ],
  "before_install": [
    "echo \"$DOCKER_PASSWORD\" | docker login -u \"$DOCKER_USERNAME\" --password-stdin",
    "mkdir -p \"$DIR\"",
    "cp -R \"$TRAVIS_BUILD_DIR\" \"${DIR}/golang-shared\""
  ],
  "script": [
    "pushd \"${DIR}/golang-shared\"",
    "docker-compose -f build/docker-compose.build.yml up --abort-on-container-exit --build ${TARGET}-local || travis_terminate 1",
    "popd"
  ],
  "jobs": {
    "include": [
      {
        "stage": "deploy",
        "env": [
          {
            "TARGET": "musl"
          }
        ],
        "before_deploy": [
          "git config --local user.name \"Travis CI\"",
          "git config --local user.email \"travis@travis-ci.org\"",
          "export TRAVIS_TAG=$(python3 version.py --fetch <<< \"$TRAVIS_COMMIT_MESSAGE\")",
          "if [ -n \"$TRAVIS_TAG\" ] && [ ! $(git tag -l \"$TRAVIS_TAG\") ]; then git tag $TRAVIS_TAG; else echo \"Uh-oh, tag $TRAVIS_TAG already exists!\"; fi",
          "RELEASE_NOTES=${TRAVIS_COMMIT_MESSAGE//$'\\n'/ }"
        ],
        "script": [
          "/bin/true"
        ],
        "deploy": [
          {
            "provider": "releases",
            "skip_cleanup": true,
            "token": "$UNTANGLE_BOT_OATH_TOKEN",
            "name": "$TRAVIS_TAG",
            "release_notes": "$RELEASE_NOTES",
            "on": {
              "branch": [
                "master"
              ]
            }
          }
        ]
      }
    ]
  }
}