diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 948693c3c4..17e468b454 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -313,11 +313,11 @@ jobs: - name: Build package if: matrix.os != 'ubuntu-20-16-cores' - run: cargo build --release --bin ${{ matrix.file_name }} --features "onnx" + run: cargo build --release --bin ${{ matrix.file_name }} - - name: Build package for ubuntu (with kafka & snowflake & onnx) + - name: Build package for ubuntu (with kafka & snowflake) if: matrix.os == 'ubuntu-20-16-cores' - run: cargo build --release --bin ${{ matrix.file_name }} --features "kafka snowflake onnx" + run: cargo build --release --bin ${{ matrix.file_name }} --features "kafka snowflake" - name: Prepare release assets shell: bash diff --git a/ci/Dockerfile b/ci/Dockerfile index 9237919e5f..dbd61d5ac8 100644 --- a/ci/Dockerfile +++ b/ci/Dockerfile @@ -6,9 +6,7 @@ RUN apt-get update \ odbcinst \ unixodbc \ curl \ - unzip \ - cmake \ - clang + unzip # INSTALL PROTOBUF RUN curl -LO https://github.com/protocolbuffers/protobuf/releases/download/v3.18.1/protoc-3.18.1-linux-x86_64.zip @@ -20,13 +18,6 @@ RUN curl -LO https://sfc-repo.snowflakecomputing.com/odbc/linux/2.25.7/snowflake RUN dpkg -i snowflake-odbc-2.25.7.x86_64.deb RUN rm snowflake-odbc-2.25.7.x86_64.deb -# Install ONNX Runtime -RUN curl -LO https://github.com/microsoft/onnxruntime/releases/download/v1.15.1/onnxruntime-linux-x64-1.15.1.tgz -RUN tar -xf onnxruntime-linux-x64-1.15.1.tgz -C /usr/local -RUN rm onnxruntime-linux-x64-1.15.1.tgz -RUN cp /usr/local/onnxruntime-linux-x64-1.15.1/lib/libonnxruntime.so.1.15.1 /usr/local/lib/ -RUN ldconfig - # INSTALL DOZER RUN echo "Installing dozer binary"