revert several improvements
This commit is contained in:
2025-04-18 11:18:09 +00:00
parent 96b78caca2
commit 8bcfb60d16

View File

@@ -14,14 +14,21 @@ jobs:
container: container:
image: archlinux:latest image: archlinux:latest
steps: steps:
- name: Install dependencies
- name: Install basic dependencies
run: | run: |
pacman -Syu --noconfirm pacman -Syu --noconfirm
pacman -S --noconfirm git rustup gcc pacman -S --noconfirm git nodejs npm
rustup default stable
- name: Checkout code - 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 - name: Build with cargo
run: | run: |
@@ -38,13 +45,20 @@ jobs:
container: container:
image: debian:stable image: debian:stable
steps: steps:
- name: Install dependencies
- name: Install basic dependencies
run: | run: |
apt update && apt upgrade -y apt update && apt upgrade -y
apt install -y git cargo apt install -y git nodejs npm
- name: Checkout code - 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 - name: Build with cargo
run: | run: |
@@ -61,13 +75,20 @@ jobs:
container: container:
image: fedora:latest image: fedora:latest
steps: steps:
- name: Install dependencies
- name: Install basic dependencies
run: | run: |
dnf update -y dnf up -y
dnf install -y git cargo dnf install -y git nodejs npm
- name: Checkout code - 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 - name: Build with cargo
run: | run: |