Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1.  build_unittest.yml
    1. Brings up a Ubuntu 18.04 VM hosted on GitHub infrastructure with preinstalled packages mentioned in link https://github.com/actions/virtual-environments/blob/master/images/linux/Ubuntu1804-README.md
    2. Installs Go 1.13.8 package
    3. Installs and configures Redis 5.0.8 with two instances running on port 6379 and 6380.
    4. Checks out the PR code into the Go module directory
    5. Builds the code
    6. Runs the unit tests
  2.  build_deploy_test.yml
    1. Brings up a Ubuntu 18.04 VM hosted on GitHub infrastructure with preinstalled packages mentioned in link https://github.com/actions/virtual-environments/blob/master/images/linux/Ubuntu1804-README.md
    2. Checks out the PR code
    3. Build and deploys the following docker containers
      1. Odimra
      2. Generic redfish plugin
      3. Kakfa
      4. Zookeeper
      5. Consul
      6. Redisdb
    4. Runs the sanity tests
    5. Uploads the build artifacts

         Note: Build status notifications with the link to the GitHub Actions build job page will be sent to the developer’s email.

...