Skip to content

Set rustup profile to minimal thru rustup #1511 #1514

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

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,9 @@ jobs:
sudo apt-get install -y ${{ matrix.apt_deps }}

- name: Prepare dependencies
run: ./y.sh prepare
run: |
rustup set profile minimal
./y.sh prepare

# The Wine version shipped with Ubuntu 22.04 doesn't implement bcryptprimitives.dll
- name: Build bcryptprimitives.dll shim for Wine
Expand Down Expand Up @@ -156,7 +158,9 @@ jobs:
run: cat /proc/cpuinfo

- name: Prepare dependencies
run: ./y.sh prepare
run: |
rustup set profile minimal
./y.sh prepare

- name: Disable JIT tests
run: |
Expand Down Expand Up @@ -189,7 +193,9 @@ jobs:
sudo apt install -y hyperfine

- name: Prepare dependencies
run: ./y.sh prepare
run: |
rustup set profile minimal
./y.sh prepare

- name: Build
run: ./y.sh build --sysroot none
Expand Down Expand Up @@ -251,7 +257,9 @@ jobs:
sudo apt-get install -y gcc-mingw-w64-x86-64

- name: Prepare dependencies
run: ./y.sh prepare
run: |
rustup set profile minimal
./y.sh prepare

- name: Build backend
run: ./y.sh build --sysroot none
Expand Down