(libretro) update gitignore

This commit is contained in:
barbudreadmon 2020-01-27 10:18:32 +01:00
parent 373ebb6b47
commit 7bbe65dc0e
8 changed files with 1 additions and 160 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

@ -21,6 +21,7 @@ config/*
fbneo.dat
# libretro
/.github
*.so
*.o
src/burner/libretro/ctvmake