chore: fix workflow
This commit is contained in:
parent
076714d051
commit
9deebe4b6e
@ -24,17 +24,20 @@ jobs:
|
||||
#run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
|
||||
- name: Install Rust
|
||||
run: |
|
||||
|
||||
while true; do sleep 20; done
|
||||
export RUSTUP_HOME=//share/rust/.rustup
|
||||
export CARGO_HOME=/usr/share/rust/.cargo
|
||||
export RUSTUP_HOME=/toolcache/rust/.rustup
|
||||
export CARGO_HOME=/toolcach/rust/.cargo
|
||||
printf "\n\t🐋 Installing dependencies 🐋\t\n"
|
||||
apt-get -yq update
|
||||
apt-get -yq install build-essential llvm libssl-dev
|
||||
printf "\n\t🐋 Installing Rust 🐋\t\n"
|
||||
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain=stable --profile=minimal
|
||||
source "${CARGO_HOME}/env"
|
||||
rustup component add rustfmt clippy
|
||||
if [ ! -x "${CARGO_HOME}/bin/cargo" ] ; then
|
||||
source "${CARGO_HOME}/env"
|
||||
else
|
||||
printf "\n\t🐋 Installing Rust 🐋\t\n"
|
||||
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain=stable --profile=minimal
|
||||
source "${CARGO_HOME}/env"
|
||||
printf "\n\t🐋 Installing Rust components 🐋\t\n"
|
||||
rustup component add rustfmt clippy
|
||||
fi
|
||||
printf "\n\t🐋 Installed CARGO 🐋\t\n"
|
||||
cargo -V
|
||||
printf "\n\t🐋 Installed RUSTC 🐋\t\n"
|
||||
@ -43,16 +46,12 @@ jobs:
|
||||
# rustup -V
|
||||
- name: Rust build
|
||||
run: |
|
||||
export RUSTUP_HOME=/usr/share/rust/.rustup
|
||||
export CARGO_HOME=/usr/share/rust/.cargo
|
||||
export RUSTUP_HOME=/toolcache/rust/.rustup
|
||||
export CARGO_HOME=/toolcach/rust/.cargo
|
||||
source "${CARGO_HOME}/env"
|
||||
cd ${{ gitea.workspace }}
|
||||
pwd
|
||||
ls
|
||||
ls /home/rootless/
|
||||
df -h
|
||||
#cargo build
|
||||
#ls -l target/debug
|
||||
cargo build
|
||||
ls -l target/debug
|
||||
- name: Install kubectl
|
||||
run: |
|
||||
OS="$(uname | tr '[:upper:]' '[:lower:]')"
|
||||
|
Loading…
Reference in New Issue
Block a user