# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0

version: 0.2

phases:
  install:
    on-failure: ABORT
    commands:
      # Install gcc-4x.
      # aws-crt-manylinux2014 has gcc-9 installed. aws-lc compiler test cannot work with the compiler.
      - yum update -y
      - yum install gcc gcc-c++ -y
      - export PATH=/usr/bin:$PATH
  pre_build:
    commands:
      - export CC=gcc
      - export CXX=g++
  build:
    commands:
      - ./tests/ci/run_minimal_tests.sh
