Skip to content

Commit

Permalink
Merge pull request #19 from AntChainOpenLabs/fix_release_ci
Browse files Browse the repository at this point in the history
chore: fix release ci
  • Loading branch information
i-zhen committed Dec 25, 2023
2 parents b626a06 + 2ac0901 commit ed6720f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Build the Release
working-directory: ir_cli
run: |
rustup default 1.67
rustup default 1.70
make release
ls _build # there should be a ir.tgz file under the ir_cli/_build directory
- name: Upload Artifact to Github Releases
Expand Down
4 changes: 2 additions & 2 deletions docker/ir-cli-builder/Dockerfile
Expand Up @@ -24,15 +24,15 @@ RUN yum -y install git
# ca-certificates
RUN yum -y install ca-certificates

# rust-1.67.0
# rust-1.70.0
# cargo
# RUN yum -y install rust cargo rustfmt
RUN curl https://sh.rustup.rs -sSf | bash -s -- -y
RUN echo 'source $HOME/.cargo/env' >> $HOME/.bashrc

ENV PATH="/root/.cargo/bin:${PATH}"
ENV CARGO_NET_GIT_FETCH_WITH_CLI=true
RUN rustup default 1.67
RUN rustup default 1.70

# RUN rustup default stable
RUN cargo version
Expand Down

0 comments on commit ed6720f

Please sign in to comment.