bugfix: Virtual Keyboard options were not saved correctly #15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: C/C++ CI | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
- dev | |
tags: | |
- v*.*.* | |
pull_request: | |
branches: | |
- master | |
- dev | |
jobs: | |
build-rpi3-sdl2-32bit-rpios: | |
runs-on: [self-hosted, Linux, ARM, rpios] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'true' | |
- name: make capsimg | |
run: make capsimg | |
- name: build for RPI3 32-bit | |
run: make -j4 PLATFORM=rpi3-sdl2 | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: amiberry-rpi3-sdl2-32bit-rpios | |
path: | | |
amiberry | |
capsimg.so | |
abr/** | |
conf/** | |
controllers/** | |
data/** | |
inputrecordings/** | |
kickstarts/** | |
nvram/** | |
savestates/** | |
screenshots/** | |
whdboot/** | |
- name: Get tag | |
if: github.ref_type == 'tag' | |
id: tag | |
uses: dawidd6/action-get-tag@v1 | |
with: | |
# Optionally strip `v` prefix | |
strip_v: false | |
- name: ZIP binaries | |
if: github.ref_type == 'tag' | |
run: zip -r amiberry-${{ steps.tag.outputs.tag }}-rpi3-sdl2-32bit-rpios.zip amiberry capsimg.so abr conf controllers data kickstarts savestates screenshots whdboot | |
- name: Create Changelog | |
if: github.ref_type == 'tag' | |
id: changelog | |
uses: loopwerk/tag-changelog@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
config_file: .github/tag-changelog-config.js | |
- name: Create Release | |
if: github.ref_type == 'tag' | |
uses: ncipollo/release-action@v1 | |
with: | |
allowUpdates: true | |
omitBodyDuringUpdate: true | |
body: ${{ steps.changelog.outputs.changes }} | |
artifacts: | | |
amiberry-${{ steps.tag.outputs.tag }}-rpi3-sdl2-32bit-rpios.zip | |
build-rpi4-sdl2-32bit-rpios: | |
runs-on: [self-hosted, Linux, ARM, rpios] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'true' | |
- name: make capsimg | |
run: make capsimg | |
- name: build for RPI4 32-bit | |
run: make -j4 PLATFORM=rpi4-sdl2 | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: amiberry-rpi4-sdl2-32bit-rpios | |
path: | | |
amiberry | |
capsimg.so | |
abr/** | |
conf/** | |
controllers/** | |
data/** | |
inputrecordings/** | |
kickstarts/** | |
nvram/** | |
savestates/** | |
screenshots/** | |
whdboot/** | |
- name: Get tag | |
if: github.ref_type == 'tag' | |
id: tag | |
uses: dawidd6/action-get-tag@v1 | |
with: | |
# Optionally strip `v` prefix | |
strip_v: false | |
- name: ZIP binaries | |
if: github.ref_type == 'tag' | |
run: zip -r amiberry-${{ steps.tag.outputs.tag }}-rpi4-sdl2-32bit-rpios.zip amiberry capsimg.so abr conf controllers data kickstarts savestates screenshots whdboot | |
- name: Create Changelog | |
if: github.ref_type == 'tag' | |
id: changelog | |
uses: loopwerk/tag-changelog@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
config_file: .github/tag-changelog-config.js | |
- name: Create Release | |
if: github.ref_type == 'tag' | |
uses: ncipollo/release-action@v1 | |
with: | |
allowUpdates: true | |
omitBodyDuringUpdate: true | |
body: ${{ steps.changelog.outputs.changes }} | |
artifacts: | | |
amiberry-${{ steps.tag.outputs.tag }}-rpi4-sdl2-32bit-rpios.zip | |
build-rpi3-sdl2-64bit-rpios: | |
runs-on: [self-hosted, Linux, ARM64, rpios] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'true' | |
- name: make capsimg | |
run: make capsimg | |
- name: build for RPI3 64-bit | |
run: make -j4 PLATFORM=rpi3-64-sdl2 | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: amiberry-rpi3-sdl2-64bit-rpios | |
path: | | |
amiberry | |
capsimg.so | |
abr/** | |
conf/** | |
controllers/** | |
data/** | |
inputrecordings/** | |
kickstarts/** | |
nvram/** | |
savestates/** | |
screenshots/** | |
whdboot/** | |
- name: Get tag | |
if: github.ref_type == 'tag' | |
id: tag | |
uses: dawidd6/action-get-tag@v1 | |
with: | |
# Optionally strip `v` prefix | |
strip_v: false | |
- name: ZIP binaries | |
if: github.ref_type == 'tag' | |
run: zip -r amiberry-${{ steps.tag.outputs.tag }}-rpi3-sdl2-64bit-rpios.zip amiberry capsimg.so abr conf controllers data kickstarts savestates screenshots whdboot | |
- name: Create Changelog | |
if: github.ref_type == 'tag' | |
id: changelog | |
uses: loopwerk/tag-changelog@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
config_file: .github/tag-changelog-config.js | |
- name: Create Release | |
if: github.ref_type == 'tag' | |
uses: ncipollo/release-action@v1 | |
with: | |
allowUpdates: true | |
omitBodyDuringUpdate: true | |
body: ${{ steps.changelog.outputs.changes }} | |
artifacts: | | |
amiberry-${{ steps.tag.outputs.tag }}-rpi3-sdl2-64bit-rpios.zip | |
build-rpi4-sdl2-64bit-rpios: | |
runs-on: [self-hosted, Linux, ARM64, rpios] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'true' | |
- name: make capsimg | |
run: make capsimg | |
- name: build for RPI4 64-bit | |
run: make -j4 PLATFORM=rpi4-64-sdl2 | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: amiberry-rpi4-sdl2-64bit-rpios | |
path: | | |
amiberry | |
capsimg.so | |
abr/** | |
conf/** | |
controllers/** | |
data/** | |
inputrecordings/** | |
kickstarts/** | |
nvram/** | |
savestates/** | |
screenshots/** | |
whdboot/** | |
- name: Get tag | |
if: github.ref_type == 'tag' | |
id: tag | |
uses: dawidd6/action-get-tag@v1 | |
with: | |
# Optionally strip `v` prefix | |
strip_v: false | |
- name: ZIP binaries | |
if: github.ref_type == 'tag' | |
run: zip -r amiberry-${{ steps.tag.outputs.tag }}-rpi4-sdl2-64bit-rpios.zip amiberry capsimg.so abr conf controllers data kickstarts savestates screenshots whdboot | |
- name: Create Changelog | |
if: github.ref_type == 'tag' | |
id: changelog | |
uses: loopwerk/tag-changelog@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
config_file: .github/tag-changelog-config.js | |
- name: Create Release | |
if: github.ref_type == 'tag' | |
uses: ncipollo/release-action@v1 | |
with: | |
allowUpdates: true | |
omitBodyDuringUpdate: true | |
body: ${{ steps.changelog.outputs.changes }} | |
artifacts: | | |
amiberry-${{ steps.tag.outputs.tag }}-rpi4-sdl2-64bit-rpios.zip | |
build-macOS-64bit-intel: | |
runs-on: [self-hosted, macOS, X64] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'true' | |
- name: make capsimg | |
run: make capsimg | |
- name: make for macOS X64 | |
run: make -j4 PLATFORM=osx-x86 | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: amiberry-macOS-64bit-intel | |
path: | | |
Amiberry.app/** | |
- name: Get tag | |
if: github.ref_type == 'tag' | |
id: tag | |
uses: dawidd6/action-get-tag@v1 | |
with: | |
# Optionally strip `v` prefix | |
strip_v: false | |
- name: ZIP binaries | |
if: github.ref_type == 'tag' | |
run: zip -r amiberry-${{ steps.tag.outputs.tag }}-macOS-64bit-intel.zip Amiberry.app | |
- name: Create Changelog | |
if: github.ref_type == 'tag' | |
id: changelog | |
uses: loopwerk/tag-changelog@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
config_file: .github/tag-changelog-config.js | |
- name: Create Release | |
if: github.ref_type == 'tag' | |
uses: ncipollo/release-action@v1 | |
with: | |
allowUpdates: true | |
omitBodyDuringUpdate: true | |
body: ${{ steps.changelog.outputs.changes }} | |
artifacts: | | |
amiberry-${{ steps.tag.outputs.tag }}-macOS-64bit-intel.zip | |
build-x86-64-debian: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'true' | |
- name: Run the build process with Docker | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: midwan/amiberry-docker-x86_64:latest | |
options: -v ${{ github.workspace }}:/build | |
run: | | |
make capsimg | |
make -j8 PLATFORM=x86-64 | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: amiberry-x86-64-debian | |
path: | | |
amiberry | |
capsimg.so | |
abr/** | |
conf/** | |
controllers/** | |
data/** | |
inputrecordings/** | |
kickstarts/** | |
nvram/** | |
savestates/** | |
screenshots/** | |
whdboot/** | |
- name: Get tag | |
if: github.ref_type == 'tag' | |
id: tag | |
uses: dawidd6/action-get-tag@v1 | |
with: | |
# Optionally strip `v` prefix | |
strip_v: false | |
- name: ZIP binaries | |
if: github.ref_type == 'tag' | |
run: zip -r amiberry-${{ steps.tag.outputs.tag }}-x86-64-debian.zip amiberry capsimg.so abr conf controllers data kickstarts savestates screenshots whdboot | |
- name: Create Changelog | |
if: github.ref_type == 'tag' | |
id: changelog | |
uses: loopwerk/tag-changelog@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
config_file: .github/tag-changelog-config.js | |
- name: Create Release | |
if: github.ref_type == 'tag' | |
uses: ncipollo/release-action@v1 | |
with: | |
allowUpdates: true | |
omitBodyDuringUpdate: true | |
body: ${{ steps.changelog.outputs.changes }} | |
artifacts: | | |
amiberry-${{ steps.tag.outputs.tag }}-x86-64-debian.zip | |
build-rpi4-sdl2-64bit-manjaro: | |
runs-on: [self-hosted, Linux, ARM64, manjaro] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'true' | |
- name: make capsimg | |
run: make capsimg | |
- name: build for RPI4 64-bit | |
run: make -j4 PLATFORM=rpi4-64-sdl2 | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: amiberry-rpi4-sdl2-64bit-manjaro | |
path: | | |
amiberry | |
capsimg.so | |
abr/** | |
conf/** | |
controllers/** | |
data/** | |
inputrecordings/** | |
kickstarts/** | |
nvram/** | |
savestates/** | |
screenshots/** | |
whdboot/** | |
- name: Get tag | |
if: github.ref_type == 'tag' | |
id: tag | |
uses: dawidd6/action-get-tag@v1 | |
with: | |
# Optionally strip `v` prefix | |
strip_v: false | |
- name: ZIP binaries | |
if: github.ref_type == 'tag' | |
run: zip -r amiberry-${{ steps.tag.outputs.tag }}-rpi4-sdl2-64bit-manjaro.zip amiberry capsimg.so abr conf controllers data kickstarts savestates screenshots whdboot | |
- name: Create Changelog | |
if: github.ref_type == 'tag' | |
id: changelog | |
uses: loopwerk/tag-changelog@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
config_file: .github/tag-changelog-config.js | |
- name: Create Release | |
if: github.ref_type == 'tag' | |
uses: ncipollo/release-action@v1 | |
with: | |
allowUpdates: true | |
omitBodyDuringUpdate: true | |
body: ${{ steps.changelog.outputs.changes }} | |
artifacts: | | |
amiberry-${{ steps.tag.outputs.tag }}-rpi4-sdl2-64bit-manjaro.zip | |
build-RK3399-sdl2-64bit-manjaro: | |
runs-on: [self-hosted, Linux, ARM64, manjaro] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'true' | |
- name: make capsimg | |
run: make capsimg | |
- name: build for RPI4 64-bit | |
run: make -j4 PLATFORM=n2 | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: amiberry-rk3399-sdl2-64bit-manjaro | |
path: | | |
amiberry | |
capsimg.so | |
abr/** | |
conf/** | |
controllers/** | |
data/** | |
inputrecordings/** | |
kickstarts/** | |
nvram/** | |
savestates/** | |
screenshots/** | |
whdboot/** | |
- name: Get tag | |
if: github.ref_type == 'tag' | |
id: tag | |
uses: dawidd6/action-get-tag@v1 | |
with: | |
# Optionally strip `v` prefix | |
strip_v: false | |
- name: ZIP binaries | |
if: github.ref_type == 'tag' | |
run: zip -r amiberry-${{ steps.tag.outputs.tag }}-rk3399-sdl2-64bit-manjaro.zip amiberry capsimg.so abr conf controllers data kickstarts savestates screenshots whdboot | |
- name: Create Changelog | |
if: github.ref_type == 'tag' | |
id: changelog | |
uses: loopwerk/tag-changelog@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
config_file: .github/tag-changelog-config.js | |
- name: Create Release | |
if: github.ref_type == 'tag' | |
uses: ncipollo/release-action@v1 | |
with: | |
allowUpdates: true | |
omitBodyDuringUpdate: true | |
body: ${{ steps.changelog.outputs.changes }} | |
artifacts: | | |
amiberry-${{ steps.tag.outputs.tag }}-rk3399-sdl2-64bit-manjaro.zip |