From 88b50c558a013887ba2c11877cf3287a5258a041 Mon Sep 17 00:00:00 2001 From: akshun Date: Mon, 16 Jun 2025 03:09:47 +0000 Subject: [PATCH] Delete .gitea/workflows/build.yml --- .gitea/workflows/build.yml | 107 ------------------------------------- 1 file changed, 107 deletions(-) delete mode 100644 .gitea/workflows/build.yml diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml deleted file mode 100644 index de0d8d0..0000000 --- a/.gitea/workflows/build.yml +++ /dev/null @@ -1,107 +0,0 @@ -name: Build on Multiple Distributions - -on: - push: - branches: - - main - pull_request: - branches: - - main - -jobs: - build-on-arch: - runs-on: ubuntu-latest - container: - image: archlinux:latest - steps: - - - name: Install basic dependencies - run: | - pacman -Syu --noconfirm - pacman -S --noconfirm nodejs npm - - - uses: actions/checkout@v4 - - - name: Install dependencies - run: | - pacman -S --noconfirm python python-pip binutils - - - name: Prepare Python environment - run: | - mv /lib/python3*/EXTERNALLY-MANAGED . - pip install --upgrade pip - pip install pyinstaller inquirerpy distro - - - name: Build with PyInstaller - run: | - pyinstaller --onefile --add-data "bash/:bash/" --add-data "prompts/:prompts/" --add-data "config/:config/" setup.py - - - name: Upload artifact - uses: actions/upload-artifact@v3 - with: - name: arch-setup - path: dist/setup - - build-on-debian: - runs-on: ubuntu-latest - container: - image: debian:stable - steps: - - - name: Install basic dependencies - run: | - apt update && apt upgrade -y - apt install -y git nodejs npm - - - uses: actions/checkout@v4 - - - name: Install dependencies - run: | - apt install -y python3 python3-pip binutils - - - name: Prepare Python environment - run: | - mv /lib/python*/EXTERNALLY-MANAGED . - pip install pyinstaller inquirerpy distro - - - name: Build with PyInstaller - run: | - pyinstaller --onefile --add-data "bash/:bash/" --add-data "prompts/:prompts/" --add-data "config/:config/" setup.py - - - name: Upload artifact - uses: actions/upload-artifact@v3 - with: - name: debian-setup - path: dist/setup - - build-on-fedora: - runs-on: ubuntu-latest - container: - image: fedora:latest - steps: - - - name: Install basic dependencies - run: | - dnf up -y - dnf install -y git nodejs npm - - - uses: actions/checkout@v4 - - - name: Install dependencies - run: | - dnf install -y python python-pip binutils - - - name: Install Python dependencies - run: | - pip install inquirerpy distro pyinstaller - - - name: Build with PyInstaller - run: | - pyinstaller --onefile --add-data "bash/:bash/" --add-data "prompts/:prompts/" --add-data "config/:config/" setup.py - - - name: Upload artifact - uses: actions/upload-artifact@v3 - with: - name: fedora-setup - path: dist/setup -