Skip to content

Commit c226b96

Browse files
Updating workflow to not setup rust outside the build script as it has no consequence inside the docker instance that builds
2 parents 3ff1ce6 + c0aac98 commit c226b96

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

.github/build

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/bin/bash
22

3+
apt update && apt install -y cmake
34
curl https://sh.rustup.rs -sSf | sh -s -- -y
45
source "$HOME/.cargo/env"
56
rustup target add x86_64-unknown-linux-musl

.github/workflows/build_binary_for_release.yml

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ jobs:
1010
steps:
1111
- name: Checkout the repository
1212
uses: actions/checkout@master
13+
- name: Setup
14+
run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
1315
- name: Generate the artifacts
1416
uses: skx/github-action-build@master
1517
- name: Upload the artifacts

0 commit comments

Comments
 (0)