From 2fd5f483348ce28da5f208b77251dcac4bcebfe7 Mon Sep 17 00:00:00 2001 From: sunglocto Date: Wed, 27 Aug 2025 12:03:22 +0100 Subject: [PATCH] Remove all workflows --- .github/workflows/freebsd.yml | 29 ----------------------------- .github/workflows/linux.yml | 34 ---------------------------------- .github/workflows/macos.yml | 29 ----------------------------- .github/workflows/windows.yml | 29 ----------------------------- 4 files changed, 121 deletions(-) delete mode 100644 .github/workflows/freebsd.yml delete mode 100644 .github/workflows/linux.yml delete mode 100644 .github/workflows/macos.yml delete mode 100644 .github/workflows/windows.yml diff --git a/.github/workflows/freebsd.yml b/.github/workflows/freebsd.yml deleted file mode 100644 index b6df5a0..0000000 --- a/.github/workflows/freebsd.yml +++ /dev/null @@ -1,29 +0,0 @@ -# This workflow will build a golang project for FreeBSD -# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go - -name: build for freebsd -on: - push: - branches: [ "master" ] - pull_request: - branches: [ "master" ] - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: vmactions/freebsd-vm@v1 - with: - usesh: true - release: '14.0' - prepare: | - pkg install -y go - pkg install -y xorg - pkg install -y git - pkg install -y node - pkg install -y npm - pkg install -y pkgconf - run: | - go version - go build -buildvcs=false . diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml deleted file mode 100644 index 4b4d87c..0000000 --- a/.github/workflows/linux.yml +++ /dev/null @@ -1,34 +0,0 @@ -# This workflow will build a golang project -# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go - -name: build Linux - -on: - push: - branches: [ "master" ] - pull_request: - branches: [ "master" ] - -jobs: - - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - name: Set up Go - uses: actions/setup-go@v4 - with: - go-version: '1.24' - - name: Install X11 dependencies - run: sudo apt-get update && sudo apt-get install -y libx11-dev libxcursor-dev libxrandr-dev libxinerama-dev libxi-dev libgl1-mesa-dev libglu1-mesa-dev libxxf86vm-dev - - - name: Build - run: go build . - - - name: Artifact - uses: actions/upload-artifact@v4 - with: - name: pi-binary - path: pi-im - diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml deleted file mode 100644 index d088dfb..0000000 --- a/.github/workflows/macos.yml +++ /dev/null @@ -1,29 +0,0 @@ -# This workflow will build a golang project for MacOS -# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go - -name: build for macos -on: - push: - branches: [ "master" ] - pull_request: - branches: [ "master" ] - -jobs: - build: - runs-on: macos-latest - steps: - - uses: actions/checkout@v4 - - - name: Set up Go - uses: actions/setup-go@v4 - with: - go-version: '1.24' - - - name: Build - run: go build . - - - name: Artifact - uses: actions/upload-artifact@v4 - with: - name: pi-binary-macos - path: pi-im diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml deleted file mode 100644 index 240b013..0000000 --- a/.github/workflows/windows.yml +++ /dev/null @@ -1,29 +0,0 @@ -# This workflow will build a golang project for Windows -# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go - -name: build for windows -on: - push: - branches: [ "master" ] - pull_request: - branches: [ "master" ] - -jobs: - build: - runs-on: windows-latest - steps: - - uses: actions/checkout@v4 - - - name: Set up Go - uses: actions/setup-go@v4 - with: - go-version: '1.24' - - - name: Build - run: go build -o pi-im.exe . - - - name: Artifact - uses: actions/upload-artifact@v4 - with: - name: pi-binary-windows - path: pi-im.exe