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

Fixes to goreleaser script #5562

Merged
merged 1 commit into from
Jun 18, 2024

Fixes to goreleaser script

acaf07d
Select commit
Loading
Failed to load commit list.
Merged

Fixes to goreleaser script #5562

Fixes to goreleaser script
acaf07d
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch succeeded Jun 18, 2024 in 10m 56s

Build Passed

The build passed.

Details

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

Jobs and Stages

This build has 16 jobs, running in parallel.

Job Go ENV OS State
22340.1 1.22.4 Linux passed
22340.2 1.21.11 Linux passed
22340.3 Compile and various other checks 1.22.4 TEST_SUITE=compile Linux passed
22340.4 Run TestNoRace tests 1.22.4 TEST_SUITE=no_race_tests Linux passed
22340.5 Run Store tests 1.22.4 TEST_SUITE=store_tests Linux passed
22340.6 Run JetStream tests 1.22.4 TEST_SUITE=js_tests Linux passed
22340.7 Run JetStream cluster tests (1) 1.22.4 TEST_SUITE=js_cluster_tests_1 Linux passed
22340.8 Run JetStream cluster tests (2) 1.22.4 TEST_SUITE=js_cluster_tests_2 Linux passed
22340.9 Run JetStream cluster tests (3) 1.22.4 TEST_SUITE=js_cluster_tests_3 Linux passed
22340.10 Run JetStream cluster tests (4) 1.22.4 TEST_SUITE=js_cluster_tests_4 Linux passed
22340.11 Run JetStream super cluster tests 1.22.4 TEST_SUITE=js_super_cluster_tests Linux passed
22340.12 Run MQTT tests 1.22.4 TEST_SUITE=mqtt_tests Linux passed
22340.13 Run Message Tracing tests 1.22.4 TEST_SUITE=msgtrace_tests Linux passed
22340.14 Run all other tests from the server package 1.22.4 TEST_SUITE=srv_pkg_non_js_tests Linux passed
22340.15 Run all tests from all other packages 1.22.4 TEST_SUITE=non_srv_pkg_tests Linux passed
22340.16 Compile with older Go release 1.20 TEST_SUITE=build_only Linux passed

Build Configuration

Build Option Setting
Language Go
Operating System Linux (Focal)
Go Versions 1.22.4, 1.21.11
Build Configuration
{
  "language": "go",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "vm": {
    "size": "2x-large"
  },
  "go": [
    "1.22.4",
    "1.21.11"
  ],
  "go_import_path": "github.com/nats-io/nats-server",
  "addons": {
    "apt": {
      "packages": [
        "rpm"
      ]
    }
  },
  "jobs": {
    "include": [
      {
        "name": "Compile and various other checks",
        "env": [
          {
            "TEST_SUITE": "compile"
          }
        ]
      },
      {
        "name": "Run TestNoRace tests",
        "env": [
          {
            "TEST_SUITE": "no_race_tests"
          }
        ]
      },
      {
        "name": "Run Store tests",
        "env": [
          {
            "TEST_SUITE": "store_tests"
          }
        ]
      },
      {
        "name": "Run JetStream tests",
        "env": [
          {
            "TEST_SUITE": "js_tests"
          }
        ]
      },
      {
        "name": "Run JetStream cluster tests (1)",
        "env": [
          {
            "TEST_SUITE": "js_cluster_tests_1"
          }
        ]
      },
      {
        "name": "Run JetStream cluster tests (2)",
        "env": [
          {
            "TEST_SUITE": "js_cluster_tests_2"
          }
        ]
      },
      {
        "name": "Run JetStream cluster tests (3)",
        "env": [
          {
            "TEST_SUITE": "js_cluster_tests_3"
          }
        ]
      },
      {
        "name": "Run JetStream cluster tests (4)",
        "env": [
          {
            "TEST_SUITE": "js_cluster_tests_4"
          }
        ]
      },
      {
        "name": "Run JetStream super cluster tests",
        "env": [
          {
            "TEST_SUITE": "js_super_cluster_tests"
          }
        ]
      },
      {
        "name": "Run MQTT tests",
        "env": [
          {
            "TEST_SUITE": "mqtt_tests"
          }
        ]
      },
      {
        "name": "Run Message Tracing tests",
        "env": [
          {
            "TEST_SUITE": "msgtrace_tests"
          }
        ]
      },
      {
        "name": "Run all other tests from the server package",
        "env": [
          {
            "TEST_SUITE": "srv_pkg_non_js_tests"
          }
        ]
      },
      {
        "name": "Run all tests from all other packages",
        "env": [
          {
            "TEST_SUITE": "non_srv_pkg_tests"
          }
        ]
      },
      {
        "name": "Compile with older Go release",
        "go": "1.20",
        "env": [
          {
            "TEST_SUITE": "build_only"
          }
        ]
      }
    ]
  },
  "script": [
    "./scripts/runTestsOnTravis.sh $TEST_SUITE"
  ],
  "deploy": [
    {
      "provider": "script",
      "cleanup": true,
      "script": "curl -o /tmp/goreleaser.tar.gz -sLf https://github.com/goreleaser/goreleaser/releases/download/v1.26.2/goreleaser_Linux_x86_64.tar.gz && tar -xvf /tmp/goreleaser.tar.gz -C /tmp/ && /tmp/goreleaser",
      "on": {
        "tags": true,
        "condition": [
          "($TRAVIS_GO_VERSION =~ 1.22) && ($TEST_SUITE = \"compile\")"
        ]
      }
    }
  ]
}