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

ISSUE #4465 - V4 small API doc fix #4695

Merged
merged 1 commit into from
Jan 18, 2024

ISSUE #4465 small doc fix in v4

879a66f
Select commit
Loading
Failed to load commit list.
Merged

ISSUE #4465 - V4 small API doc fix #4695

ISSUE #4465 small doc fix in v4
879a66f
Select commit
Loading
Failed to load commit list.
This check has been archived and is scheduled for deletion. Learn more about checks retention
Travis CI / Travis CI - Branch succeeded Jan 18, 2024 in 12m 4s

Build Passed

The build passed.

Details

This is a normal build for the ISSUE_4465 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 Ruby
Operating System Linux (Xenial)
Build Configuration
{
  "language": "ruby",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "notifications": {
    "email": [
      {
        "recipients": [
          "[email protected]"
        ]
      }
    ]
  },
  "jobs": {
    "include": [
      {
        "submodules": false,
        "depth": 1,
        "hosts": [
          "test.127.0.0.1",
          "localhost"
        ],
        "language": "node_js",
        "dist": "focal",
        "name": "Backend tests (V4)",
        "node_js": "18.12.1",
        "sudo": true,
        "addons": {
          "apt": {
            "packages": [
              "expect-dev",
              "rabbitmq-server"
            ]
          }
        },
        "services": [
          "docker"
        ],
        "before_install": [
          "sudo apt remove mongodb && sudo apt purge mongodb && sudo apt autoremove && sudo rm -rf /var/lib/mongodb",
          "wget -qO - https://www.mongodb.org/static/pgp/server-5.0.asc | sudo apt-key add -",
          "echo \"deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/5.0 multiverse\" | sudo tee /etc/apt/sources.list.d/mongodb-org-5.0.list",
          "sudo apt-get update",
          "sudo apt-get install -y gnupg mongodb-org=5.0.8 mongodb-org-database=5.0.8 mongodb-org-server=5.0.8 mongodb-org-shell=5.0.8 mongodb-org-tools=5.0.8",
          "sudo systemctl daemon-reload && sudo systemctl start mongod && echo $(mongod --version)",
          "mkdir -p submodules",
          "test_ver=`cat backend/testDBVersion`",
          "cd submodules",
          "git clone https://$TESTS_USER:[email protected]/3drepo/tests.git",
          "cd tests",
          "git checkout $test_ver",
          "git status",
          "cd backend && mongorestore",
          "cd ../../../",
          "cp -r ./submodules/tests/frontend/staticPages/legal/ ./resources/legal"
        ],
        "install": [
          "cd ./backend",
          "yarn install",
          "cd ./../frontend",
          "DETECT_CHROMEDRIVER_VERSION=true yarn install",
          "yarn build"
        ],
        "script": [
          "cd ../backend",
          "mkdir coverage",
          "unbuffer yarn  test",
          "cd ../",
          "NODE_ENV=test NODE_CONFIG_DIR='./config' node \"./backend/3drepo.js\" &",
          "cd ./frontend"
        ]
      }
    ]
  }
}