ci: use rust 1.7.9 for release workflow and dockerfile (#999)

* ci: use rust 1.7.9 for release workflow (#996)

* docker: use rust 1.7.9 for docker (#996)
This commit is contained in:
Slava 2024-11-25 18:13:14 +02:00
parent 69971c3e98
commit 5b0a6e35c5
No known key found for this signature in database
GPG Key ID: 351E7AA9BD0DFEB8
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ on:
env:
cache_nonce: 0 # Allows for easily busting actions/cache caches
nim_version: pinned
rust_version: 1.78.0
rust_version: 1.79.0
codex_binary_base: codex
cirdl_binary_base: cirdl
build_dir: build

View File

@ -1,7 +1,7 @@
# Variables
ARG BUILDER=ubuntu:24.04
ARG IMAGE=${BUILDER}
ARG RUST_VERSION=${RUST_VERSION:-1.78.0}
ARG RUST_VERSION=${RUST_VERSION:-1.79.0}
ARG BUILD_HOME=/src
ARG MAKE_PARALLEL=${MAKE_PARALLEL:-4}
ARG NIMFLAGS="${NIMFLAGS:-"-d:disableMarchNative"}"