ref: 578bd2f24e8deb97f069d51ac908d67d0aef5767
parent: a5d01ed6edf2240ad23ae1cbb9d271f89ab963da
author: Jean-André Santoni <jean.andre.santoni@gmail.com>
date: Sun Mar 8 18:41:29 EDT 2026
Remove gh folder
--- a/.github/FUNDING.yml
+++ /dev/null
@@ -1,14 +1,0 @@
-# These are supported funding model platforms
-
-github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
-patreon: # Replace with a single Patreon username
-open_collective: # Replace with a single Open Collective username
-ko_fi: # Replace with a single Ko-fi username
-tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
-community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
-liberapay: # Replace with a single Liberapay username
-issuehunt: # Replace with a single IssueHunt username
-lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
-polar: # Replace with a single Polar username
-buy_me_a_coffee: allkern
-custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
--- a/.github/workflows/macos.yml
+++ /dev/null
@@ -1,27 +1,0 @@
-name: macOS CI
-
-on:
- push:
- branches: [ "master" ]
-
-jobs:
- build:
- runs-on: macos-latest
-
- steps:
- - uses: actions/checkout@v4
- with:
- fetch-depth: 0
- - name: Install SDL2 and dylibbundler
- run: |
- brew install sdl2
- brew install dylibbundler
- - name: Build and pack PSXE
- run: |
- git fetch --all --tags
- ./build.sh
- tar -czf psxe-macos-latest.tar.gz psxe.app
- - uses: actions/upload-artifact@v4
- with:
- name: psxe-macos-latest
- path: ./psxe-macos-latest.tar.gz
--- a/.github/workflows/ubuntu.yml
+++ /dev/null
@@ -1,31 +1,0 @@
-name: Ubuntu CI
-
-on:
- push:
- branches: [ "master" ]
-
-jobs:
- build:
- runs-on: ubuntu-latest
-
- steps:
- - uses: actions/checkout@v4
- with:
- fetch-depth: 0
- - name: Install SDL2
- run: |
- sudo apt update
- sudo apt install libsdl2-dev
- - name: Build PSXE
- run: |
- git fetch --all --tags
- make
- - name: Pack executable
- run: |
- chmod +x ./bin/psxe
- mv ./bin/psxe ./
- tar -czf psxe-ubuntu-latest.tar.gz ./psxe
- - uses: actions/upload-artifact@v4
- with:
- name: psxe-ubuntu-latest
- path: ./psxe-ubuntu-latest.tar.gz
--- a/.github/workflows/windows.yml
+++ /dev/null
@@ -1,25 +1,0 @@
-name: Windows CI
-
-on:
- push:
- branches: [ "master" ]
-
-jobs:
- build:
- runs-on: windows-latest
-
- steps:
- - uses: actions/checkout@v4
- with:
- fetch-depth: 0
- - name: Run build-deps
- run: ./build-deps.ps1
- - name: Run build-win64
- run: |
- ./build-win64.ps1
- New-Item -Path "psxe" -ItemType Directory
- Copy-Item -Recurse "bin" -Destination "psxe"
- - uses: actions/upload-artifact@v4
- with:
- name: psxe-win64-latest
- path: psxe/
\ No newline at end of file
--
⑨