diff options
-rwxr-xr-x | .github/ci/build_interchange.sh | 3 | ||||
-rw-r--r-- | .github/workflows/interchange_ci.yml | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/.github/ci/build_interchange.sh b/.github/ci/build_interchange.sh index 674bd5c1..3976ce4e 100755 --- a/.github/ci/build_interchange.sh +++ b/.github/ci/build_interchange.sh @@ -48,7 +48,8 @@ function get_dependencies { # Install RapidWright git clone https://github.com/Xilinx/RapidWright.git ${RAPIDWRIGHT_PATH} pushd ${RAPIDWRIGHT_PATH} - make update_jars + ./gradlew updateJars --no-watch-fs + make compile popd fi } diff --git a/.github/workflows/interchange_ci.yml b/.github/workflows/interchange_ci.yml index 16b50205..27b19c5a 100644 --- a/.github/workflows/interchange_ci.yml +++ b/.github/workflows/interchange_ci.yml @@ -16,7 +16,7 @@ jobs: - name: Install run: | sudo apt-get update - sudo apt-get install git make cmake libboost-all-dev python3-dev libeigen3-dev tcl-dev clang bison flex swig + sudo apt-get install git make cmake libboost-all-dev python3-dev libeigen3-dev tcl-dev clang bison flex swig locales libtinfo-dev - name: ccache uses: hendrikmuhs/ccache-action@v1 |