mirror of
https://github.com/libretro/FBNeo.git
synced 2024-11-27 02:50:29 +00:00
(libretro) update gitignore
This commit is contained in:
parent
373ebb6b47
commit
7bbe65dc0e
16
.github/workflows/code.yml
vendored
16
.github/workflows/code.yml
vendored
@ -1,16 +0,0 @@
|
||||
name: Code Artifact
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
codeartifact:
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
with:
|
||||
fetch-depth: 1
|
||||
- name: Upload code artifact
|
||||
uses: actions/upload-artifact@v1
|
||||
with:
|
||||
name: fbn-code
|
||||
path: .
|
17
.github/workflows/macos.yml
vendored
17
.github/workflows/macos.yml
vendored
@ -1,17 +0,0 @@
|
||||
name: macOS CI
|
||||
|
||||
on:
|
||||
push
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: build
|
||||
runs-on: macOS-latest
|
||||
env:
|
||||
DEVELOPER_DIR: /Applications/Xcode_11.app
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: build
|
||||
run: |
|
||||
cd projectfiles/xcode
|
||||
xcodebuild -target Emulator -configuration Debug
|
33
.github/workflows/mingw-win32.yml.ignore
vendored
33
.github/workflows/mingw-win32.yml.ignore
vendored
@ -1,33 +0,0 @@
|
||||
name: MinGW Win32 CI
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
buildgcc:
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
with:
|
||||
fetch-depth: 1
|
||||
- name: Setup msys2
|
||||
uses: numworks/setup-msys2@v1
|
||||
with:
|
||||
msystem: MINGW32
|
||||
- name: mingw update
|
||||
run : msys2do pacman -S --noconfirm --needed base-devel mingw-w64-i686-toolchain make perl nasm
|
||||
- name: mingw build
|
||||
run : msys2do make mingw510 -j9 RELEASEBUILD=1
|
||||
- name: make artifacts
|
||||
run: |
|
||||
mkdir fbn-x86-gcc
|
||||
cd fbn-x86-gcc
|
||||
cp ../fbneo.exe .
|
||||
cp ../fba.chm .
|
||||
cp ../*.zip .
|
||||
cp ../src/license.txt .
|
||||
cp ../whatsnew.html .
|
||||
- name: upload gcc x86 artifacts
|
||||
uses: actions/upload-artifact@v1
|
||||
with:
|
||||
name: fbn-x86-gcc
|
||||
path: fbn-x86-gcc
|
18
.github/workflows/sdl1.2.yml
vendored
18
.github/workflows/sdl1.2.yml
vendored
@ -1,18 +0,0 @@
|
||||
name: SDL1.2 CI
|
||||
|
||||
on:
|
||||
push
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Build SDL1.2 variant
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Install prerequisites
|
||||
run: |
|
||||
sudo apt-get -y update
|
||||
sudo apt-get -y install libsdl1.2-dev
|
||||
- name: Build
|
||||
run: |
|
||||
make sdl -j9 RELEASEBUILD=1 SKIPDEPEND=1
|
18
.github/workflows/sdl2.yml
vendored
18
.github/workflows/sdl2.yml
vendored
@ -1,18 +0,0 @@
|
||||
name: SDL2 CI
|
||||
|
||||
on:
|
||||
push
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Build SDL2 variant
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Install prerequisites
|
||||
run: |
|
||||
sudo apt-get -y update
|
||||
sudo apt-get -y install libsdl2-dev libsdl-image1.2-dev
|
||||
- name: Build
|
||||
run: |
|
||||
make sdl -j9 RELEASEBUILD=1 SKIPDEPEND=1
|
29
.github/workflows/vs2019-win32.yml
vendored
29
.github/workflows/vs2019-win32.yml
vendored
@ -1,29 +0,0 @@
|
||||
name: VS2019 win32 CI
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
buildvsx86:
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Setup MSBuild.exe
|
||||
uses: warrenbuckley/Setup-MSBuild@v1
|
||||
- name: MSBuild x86
|
||||
working-directory: projectfiles/visualstudio-2019
|
||||
run: |
|
||||
msbuild fba_vs2010.vcxproj /m /property:Configuration=Release /property:Platform=x86 /verbosity:minimal
|
||||
- name: make artifacts
|
||||
run: |
|
||||
mkdir fbn-win32-vs
|
||||
cd fbn-win32-vs
|
||||
cp ../projectfiles/visualstudio-2019/Win32/Release/*.exe .
|
||||
cp ../fba.chm .
|
||||
cp ../*.zip .
|
||||
cp ../src/license.txt .
|
||||
cp ../whatsnew.html .
|
||||
- name: upload vs x86 artifacts
|
||||
uses: actions/upload-artifact@v1
|
||||
with:
|
||||
name: fbn-win32-vs
|
||||
path: fbn-win32-vs
|
29
.github/workflows/vs2019-x64.yml
vendored
29
.github/workflows/vs2019-x64.yml
vendored
@ -1,29 +0,0 @@
|
||||
name: VS2019 x86 CI
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
buildvsx64:
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Setup MSBuild.exe
|
||||
uses: warrenbuckley/Setup-MSBuild@v1
|
||||
- name: MSBuild x64
|
||||
working-directory: projectfiles/visualstudio-2019
|
||||
run: |
|
||||
msbuild fba_vs2010.vcxproj /m /property:Configuration=Release /property:Platform=x64 /verbosity:minimal
|
||||
- name: make artifacts
|
||||
run: |
|
||||
mkdir fbn-x64-vs
|
||||
cd fbn-x64-vs
|
||||
cp ../projectfiles/visualstudio-2019/x64/Release/*.exe .
|
||||
cp ../fba.chm .
|
||||
cp ../*.zip .
|
||||
cp ../src/license.txt .
|
||||
cp ../whatsnew.html .
|
||||
- name: upload vs x64 artifacts
|
||||
uses: actions/upload-artifact@v1
|
||||
with:
|
||||
name: fbn-x64-vs
|
||||
path: fbn-x64-vs
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -21,6 +21,7 @@ config/*
|
||||
fbneo.dat
|
||||
|
||||
# libretro
|
||||
/.github
|
||||
*.so
|
||||
*.o
|
||||
src/burner/libretro/ctvmake
|
||||
|
Loading…
Reference in New Issue
Block a user