From 8bcfb60d16de9a77452ef721bd33a072f83cc950 Mon Sep 17 00:00:00 2001 From: aggarwalakshun Date: Fri, 18 Apr 2025 11:18:09 +0000 Subject: [PATCH] revert 96b78caca21d8bc7a6ce7d192cc6b11aafb1f605 revert several improvements --- .gitea/workflows/build.yml | 43 ++++++++++++++++++++++++++++---------- 1 file changed, 32 insertions(+), 11 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 94cf926..a8ece65 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -14,14 +14,21 @@ jobs: container: image: archlinux:latest steps: - - name: Install dependencies + + - name: Install basic dependencies run: | pacman -Syu --noconfirm - pacman -S --noconfirm git rustup gcc - rustup default stable + pacman -S --noconfirm git nodejs npm - name: Checkout code - uses: actions/checkout@v4 + run: | + git clone https://gitea.akshun-lab.uk/aggarwalakshun/rust-setup.git . + git checkout $GITEA_SHA + + - name: Install dependencies + run: | + pacman -S --noconfirm rustup gcc + rustup default stable - name: Build with cargo run: | @@ -38,13 +45,20 @@ jobs: container: image: debian:stable steps: - - name: Install dependencies + + - name: Install basic dependencies run: | apt update && apt upgrade -y - apt install -y git cargo + apt install -y git nodejs npm - name: Checkout code - uses: actions/checkout@v4 + run: | + git clone https://gitea.akshun-lab.uk/aggarwalakshun/rust-setup.git . + git checkout $GITEA_SHA + + - name: Install dependencies + run: | + apt install -y cargo - name: Build with cargo run: | @@ -61,13 +75,20 @@ jobs: container: image: fedora:latest steps: - - name: Install dependencies + + - name: Install basic dependencies run: | - dnf update -y - dnf install -y git cargo + dnf up -y + dnf install -y git nodejs npm - name: Checkout code - uses: actions/checkout@v4 + run: | + git clone https://gitea.akshun-lab.uk/aggarwalakshun/rust-setup.git . + git checkout $GITEA_SHA + + - name: Install dependencies + run: | + dnf install -y cargo - name: Build with cargo run: |