Skip to content

Commit

Permalink
CI: Fix "out of disk space" issues
Browse files Browse the repository at this point in the history
Signed-off-by: Andrej Orsula <[email protected]>
  • Loading branch information
AndrejOrsula committed Apr 28, 2024
1 parent 00a573c commit 795f982
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ concurrency:
cancel-in-progress: true

env:
MSRV: "1.75"
MSRV: "1.70"
CARGO_TERM_COLOR: always
SYS_LIB_PACKAGE_NAME: omniverse_sys
LIB_PACKAGE_NAME: omniverse
Expand Down Expand Up @@ -43,6 +43,16 @@ jobs:
- stable
- beta
steps:
## Free up space by removing unnecessary files
- name: Maximize build space
uses: AdityaGarg8/remove-unwanted-software@v3
with:
remove-android: "true"
remove-codeql: "true"
remove-docker-images: "true"
remove-dotnet: "true"
remove-haskell: "true"

- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ keywords = ["omniverse", "usd", "vfx", "simulation"]
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/AndrejOrsula/omniverse_rs"
rust-version = "1.75"
rust-version = "1.70"
version = "0.2.0"

[workspace.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ RUN apt-get update && \
rm -rf /var/lib/apt/lists/*

### Install Rust
ARG RUST_VERSION="1.75"
ARG RUST_VERSION="1.77"
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -yq --no-install-recommends \
ca-certificates \
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
<a href="https://github.com/AndrejOrsula/omniverse_rs/actions/workflows/docker.yml"> <img alt="Docker" src="https://github.com/AndrejOrsula/omniverse_rs/actions/workflows/docker.yml/badge.svg"></a>
<a href="https://deps.rs/repo/github/AndrejOrsula/omniverse_rs"> <img alt="deps.rs" src="https://deps.rs/repo/github/AndrejOrsula/omniverse_rs/status.svg"></a>
<a href="https://codecov.io/gh/AndrejOrsula/omniverse_rs"> <img alt="codecov.io" src="https://codecov.io/gh/AndrejOrsula/omniverse_rs/branch/main/graph/badge.svg"></a>

</p>

Rust interface for NVIDIA [Omniverse](https://www.nvidia.com/en-us/omniverse).
Expand Down

0 comments on commit 795f982

Please sign in to comment.