diff --git a/.github/workflows/continuous-integration.yaml b/.github/workflows/continuous-integration.yaml index 07e1d1833..03580a534 100644 --- a/.github/workflows/continuous-integration.yaml +++ b/.github/workflows/continuous-integration.yaml @@ -59,12 +59,15 @@ jobs: id: pytest if: ${{ steps.conformance.outcome == 'success' && !cancelled() }} env: - # TODO: remove this when concrete is statically linked with compiler - LD_PRELOAD: /concrete/target/release/libconcrete_ffi.so + # TODO: remove this when JIT doesn't need this + LD_PRELOAD: /compiler/build/lib/Runtime/libZamalangRuntime.so run: | make pytest - name: Notebooks if: ${{ steps.conformance.outcome == 'success' && !cancelled() }} + env: + # TODO: remove this when JIT doesn't need this + LD_PRELOAD: /compiler/build/lib/Runtime/libZamalangRuntime.so run: | make strip_nb make notebook_timeout diff --git a/docker/Dockerfile.hdk-dev b/docker/Dockerfile.hdk-dev index 70d88956e..7ac427ca5 100644 --- a/docker/Dockerfile.hdk-dev +++ b/docker/Dockerfile.hdk-dev @@ -6,7 +6,7 @@ RUN echo "source /hdk/.docker_venv/bin/activate" >> /root/.bashrc && \ echo " source /hdk/.docker_venv/bin/activate" >> /root/.bashrc && \ echo " cd /hdk/ && make setup_env" >> /root/.bashrc && \ echo "fi" >> /root/.bashrc && \ - echo "export LD_PRELOAD=/concrete/target/release/libconcrete_ffi.so" >> /root/.bashrc + echo "export LD_PRELOAD=/compiler/build/lib/Runtime/libZamalangRuntime.so" >> /root/.bashrc WORKDIR /hdk