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

aes: initial implementation of most aes instructions #1072

Merged
merged 7 commits into from
Oct 13, 2023

aes: changed load method in test

edf2c17
Select commit
Failed to load commit list.
Merged

aes: initial implementation of most aes instructions #1072

aes: changed load method in test
edf2c17
Select commit
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Oct 12, 2023 in 25m 57s

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 #1072 aes: initial implementation of most aes instructions.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has two jobs, running in parallel.

Job Compiler ENV OS State
3713.1 POWER9 clang CC="clang" Linux passed
3713.2 z/Arch gcc CC="gcc" Linux passed

Build Configuration

Build Option Setting
Language C
Operating System Linux (Focal)
Build Configuration
{
  "language": "c",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "jobs": {
    "include": [
      {
        "name": "POWER9",
        "if": "branch != master OR type == pull_request",
        "arch": "ppc64le",
        "compiler": "clang",
        "env": [
          {
            "CC": "\"clang\""
          },
          {
            "CXX": "\"clang++\""
          },
          {
            "CFLAGS": "\"-mcpu=power9 -Weverything -Werror\""
          },
          {
            "CXXFLAGS": "\"-mcpu=power9 -Weverything -Werror\""
          },
          {
            "JOBS": "\"$(nproc)\""
          }
        ],
        "addons": {
          "apt": {
            "packages": [
              "ninja-build python3-pip clang"
            ]
          }
        }
      },
      {
        "name": "z/Arch",
        "if": "branch != master OR type == pull_request",
        "arch": "s390x",
        "compiler": "gcc",
        "env": [
          {
            "CC": "\"gcc\""
          },
          {
            "CXX": "\"g++\""
          },
          {
            "CFLAGS": "\"-march=native -mzvector -Wextra -Werror\""
          },
          {
            "CXXFLAGS": "\"-march=native -mzvector -Wextra -Werror\""
          },
          {
            "JOBS": "\"$(nproc)\""
          }
        ],
        "addons": {
          "apt": {
            "packages": [
              "ninja-build python3-pip gcc g++"
            ]
          }
        }
      }
    ]
  },
  "before_install": [
    "cat /proc/cpuinfo",
    "cat /proc/meminfo"
  ],
  "install": [
    "pip3 install meson==0.55.0"
  ],
  "script": [
    "meson setup build -Db_coverage=true",
    "ninja -C build -v -j${JOBS}"
  ],
  "after_success": [
    "meson test -C build --print-errorlogs"
  ],
  "notifications": {
    "email": [
      {
        "enabled": false
      }
    ]
  }
}