Raw File
.travis.yml
---

dist: jammy

language: java

os: linux

jdk:

addons:
  apt:
    packages:
      - libtool-bin
      - libcppunit-dev
      - pkg-config
      - python3.10-dev
      - python3.10-venv
      - wget
      - zip
      - zlib1g-dev
      - google-perftools
      - libgoogle-perftools-dev

env:
  - BAZEL_VERSION=6.0.0 ENABLE_HEAPCHECK=1 LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8 LANGUAGE=en_US.UTF-8

before_install:
  # download and install bazel
  - wget -q "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh"
  - chmod +x bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh
  - ./bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh --user

script:
  - which gcc
  - gcc --version
  - which g++
  - g++ --version
  - which python
  - python -V
  - which python3
  - python3 -V
  - scripts/travis/ci.sh
back to top