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

Add ACPI/AML Generation #157

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from

Add ACPI/AML Generation

9db795e
Select commit
Loading
Failed to load commit list.
Draft

Add ACPI/AML Generation #157

Add ACPI/AML Generation
9db795e
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Sep 12, 2023 in 4m 35s

Build Passed

The build passed, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #157 Add ACPI/AML Generation.
Any changes that have been made to the main branch before the build ran are also included.

Jobs and Stages

This build has two jobs, running in parallel.

Job Go ENV OS State
1034.1 1.18.x GOFLAGS="-buildvcs=false" Linux passed
1034.2 1.19.x GOFLAGS="-buildvcs=false" Linux passed

Build Configuration

Build Option Setting
Language Go
Operating System Linux (Focal)
Go Versions 1.18.x, 1.19.x
Build Configuration
{
  "language": "go",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "branches": {
    "only": [
      "main"
    ]
  },
  "sudo": true,
  "addons": {
    "apt": {
      "packages": [
        "qemu-kvm",
        "qemu-utils",
        "libmnl-dev",
        "genext2fs"
      ]
    }
  },
  "go": [
    "1.18.x",
    "1.19.x"
  ],
  "env": [
    "jobs={:GOFLAGS=>\"\\\"-buildvcs=false\\\"\"}"
  ],
  "before_script": [
    "curl --retry 5 -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter",
    "chmod a+x ./cc-test-reporter",
    "sudo -E env \"PATH=$PATH\" ./cc-test-reporter before-build",
    "sudo -E env \"PATH=$PATH\" \"GO111MODULE=off\" go get golang.org/x/tools/cmd/stringer",
    "sudo -E env \"PATH=$PATH\" \"GO111MODULE=off\" go get github.com/mattn/goveralls",
    "sudo -E env \"PATH=$PATH\" \"GO111MODULE=off\" go get github.com/u-root/u-root",
    "sudo -E env \"PATH=$PATH\" make golangci-lint initrd vda.img",
    "sudo -E env \"PATH=$PATH\" make -j $(nproc) bzImage"
  ],
  "script": [
    "sudo -E env \"PATH=$PATH\" go mod tidy && git diff --no-patch --exit-code go.sum",
    "sudo -E env \"PATH=$PATH\" make gokvm",
    "travis_retry sudo -E env \"PATH=$PATH\" make test"
  ],
  "after_script": [
    "sudo -E env \"PATH=$PATH\" goveralls -service=travis-ci -coverprofile c.out",
    "sudo -E env \"PATH=$PATH\" ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT",
    "sudo -E env \"PATH=$PATH\" make clean"
  ],
  "deploy": [
    {
      "provider": "script",
      "skip_cleanup": true,
      "script": "curl --retry 5 -sL https://git.io/goreleaser | bash",
      "on": {
        "tags": true,
        "condition": [
          "$TRAVIS_GO_VERSION =~ ^1\\.8"
        ]
      }
    }
  ]
}