Push event #4 failed

  • Ran for
  • Total time
  • New branch build
language: python
python:
  - "2.7"
install: skip
script: python ./src/hello.py
matrix:
  include:
    - arch: arm64
      os: linux
    - arch: amd64
      os: linux
Build Config
{
  "matrix": {
    "include": [
      {
        "os": "linux",
        "arch": "arm64"
      },
      {
        "os": "linux",
        "arch": "amd64"
      }
    ]
  },
  "python": [
    "2.7"
  ],
  "script": "python ./src/hello.py",
  "install": "skip",
  "language": "python"
}