Remove all workflows

This commit is contained in:
2025-08-27 12:03:22 +01:00
parent d2b9f9843f
commit 2fd5f48334
4 changed files with 0 additions and 121 deletions

View File

@@ -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 .

View File

@@ -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

View File

@@ -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

View File

@@ -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