X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=.gitlab-ci.yml;h=867411fa4ddce7beef88c6b704c9f3f8df997219;hb=b79586f9c44294c5f831ee62a41a582ed0be987f;hp=5708880eba427fc9c14fe22f572fffc1221185ba;hpb=ffbe66666539ccf54add696ce8204da013b48940;p=soc.git diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5708880e..867411fa 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,6 +5,7 @@ cache: - ccache - .cache/pip - apt-cache + when: 'always' variables: PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip" @@ -12,6 +13,7 @@ variables: build: stage: build + timeout: 2h before_script: - mkdir -p apt-cache - apt-get -o dir::cache::archives="$(pwd)/apt-cache" update @@ -21,13 +23,15 @@ build: python3-setuptools python3-wheel pkg-config tcl-dev libreadline-dev bison flex libffi-dev ccache python3-venv binutils-powerpc64-linux-gnu binutils-powerpc64le-linux-gnu - autoconf gperf libgmp-dev libmpfr-dev libssl-dev + autoconf gperf libgmp-dev libmpfr-dev libssl-dev curl - export PATH="/usr/lib/ccache:$PATH" - export CCACHE_BASEDIR="$PWD" - export CCACHE_DIR="$PWD/ccache" - export CCACHE_COMPILERCHECK=content - ccache --zero-stats || true - ccache --show-stats || true + - curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y + - source $HOME/.cargo/env after_script: - export CCACHE_DIR="$PWD/ccache" - ccache --show-stats @@ -40,21 +44,21 @@ build: - pushd yices2 - autoconf - ./configure - - make -j$(nproc) + - make -j$(nproc) > /dev/null - make install - popd - git clone --depth 1 https://github.com/YosysHQ/yosys.git yosys - pushd yosys - make config-gcc - - make -j$(nproc) + - make -j$(nproc) > /dev/null - make install - popd - yosys -V - git clone --depth 1 https://github.com/YosysHQ/SymbiYosys.git SymbiYosys - pushd SymbiYosys - - make install + - make install > /dev/null - popd - git clone --depth 1 https://github.com/nmigen/nmigen.git nmigen @@ -78,6 +82,19 @@ build: - python setup.py develop - popd + - git clone --depth 1 https://git.libre-soc.org/git/openpower-isa.git openpower-isa + - pushd openpower-isa + - python3 setup.py develop + - make -j$(nproc) svanalysis > /dev/null + - make -j$(nproc) pyfnwriter > /dev/null 2>&1 + - make -j$(nproc) pywriter > /dev/null 2>&1 + - popd + + - git clone --depth 1 https://git.libre-soc.org/git/c4m-jtag.git c4m-jtag + - pushd c4m-jtag + - python setup.py develop + - popd + - IEEE754FPU_PATH="$(pwd)"/ieee754fpu - git clone --depth 1 --recursive https://github.com/billzorn/sfpy.git sfpy - pushd sfpy @@ -95,6 +112,12 @@ build: - pip install dist/sfpy*.whl - popd + - python3 -m pip install 'maturin>=0.11,<0.12' + - git clone --depth 1 https://git.libre-soc.org/git/power-instruction-analyzer.git pia + - pushd pia + - maturin build --cargo-extra-args=--features=python-extension + - python3 -m pip install target/wheels/*.whl + - popd + - python setup.py develop - - python src/soc/decoder/pseudo/pywriter.py - - nosetests -v --processes=-1 --process-timeout=120 + - nosetests -v --processes=-1 --process-timeout=120 -w src/