Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix release ci #19

Merged
merged 1 commit into from Dec 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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