chore: add rust build

This commit is contained in:
Jesús Pérez 2023-07-19 23:26:17 +01:00
parent 63ced43d5c
commit 36813c1285

View File

@ -24,7 +24,6 @@ jobs:
#run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
- name: Install Rust
run: |
ls ${{ gitea.workspace }}
export RUSTUP_HOME=/usr/share/rust/.rustup
export CARGO_HOME=/usr/share/rust/.cargo
printf "\n\t🐋 Installing dependencies 🐋\t\n"
@ -34,12 +33,20 @@ jobs:
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain=stable --profile=minimal
source "${CARGO_HOME}/env"
rustup component add rustfmt clippy
printf "\n\t🐋 Installed RUSTUP 🐋\t\n"
rustc -V
printf "\n\t🐋 Installed CARGO 🐋\t\n"
cargo -V
printf "\n\t🐋 Installed RUSTC 🐋\t\n"
rustc -V
# printf "\n\t🐋 Installed RUSTUP 🐋\t\n"
# rustup -V
- name: Rust build
run: |
export RUSTUP_HOME=/usr/share/rust/.rustup
export CARGO_HOME=/usr/share/rust/.cargo
source "${CARGO_HOME}/env"
cd ${{ gitea.workspace }}
cargo build
ls -l target/debug
- name: Install kubectl
run: |
OS="$(uname | tr '[:upper:]' '[:lower:]')"