Skip to content

Commit ed6720f

Browse files
authored
Merge pull request #19 from AntChainOpenLabs/fix_release_ci
chore: fix release ci
2 parents b626a06 + 2ac0901 commit ed6720f

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Build the Release
1919
working-directory: ir_cli
2020
run: |
21-
rustup default 1.67
21+
rustup default 1.70
2222
make release
2323
ls _build # there should be a ir.tgz file under the ir_cli/_build directory
2424
- name: Upload Artifact to Github Releases

docker/ir-cli-builder/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ RUN yum -y install git
2424
# ca-certificates
2525
RUN yum -y install ca-certificates
2626

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

3333
ENV PATH="/root/.cargo/bin:${PATH}"
3434
ENV CARGO_NET_GIT_FETCH_WITH_CLI=true
35-
RUN rustup default 1.67
35+
RUN rustup default 1.70
3636

3737
# RUN rustup default stable
3838
RUN cargo version

0 commit comments

Comments
 (0)