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

Migrate to v2 #329

Merged
merged 7 commits into from
Sep 22, 2023

Merge branch 'master' into migrate_to_v2

9fcc98e
Select commit
Loading
Failed to load commit list.
Merged

Migrate to v2 #329

Merge branch 'master' into migrate_to_v2
9fcc98e
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch required action Sep 22, 2023 in 4m 54s

Build Errored

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

Details

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

Jobs and Stages

This build has four jobs, running in parallel.

Stage 1: test

This stage errored.

Job Node.js OS State
1664.1 Linter 14 Linux errored
1664.2 Unit tests 14 Linux errored
1664.3 Task tests 14 Linux errored
1664.4 Gas benchmark 14 Linux errored

Build Configuration

Build Option Setting
Language Node.js
Operating System Linux (Trusty)
Node.js Version 14
Build Configuration
{
  "language": "node_js",
  "os": [
    "linux"
  ],
  "dist": "trusty",
  "cache": {
    "yarn": true,
    "directories": [
      "node_modules"
    ]
  },
  "node_js": [
    "14"
  ],
  "install": [
    "yarn install"
  ],
  "jobs": {
    "include": [
      {
        "stage": "test",
        "name": "Linter",
        "script": [
          "yarn build",
          "yarn dev:lint"
        ]
      },
      {
        "stage": "test",
        "name": "Unit tests",
        "script": [
          "yarn build",
          "yarn test:units"
        ]
      },
      {
        "stage": "test",
        "name": "Task tests",
        "script": [
          "yarn build",
          "yarn test:tasks"
        ]
      },
      {
        "stage": "test",
        "name": "Gas benchmark",
        "script": [
          "yarn build",
          "yarn test:gasbenchmark"
        ]
      }
    ]
  }
}