mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-20 14:05:45 +00:00
Move dead submodules in-tree
Signed-off-by: swurl <swurl@swurl.xyz>
This commit is contained in:
parent
c0cceff365
commit
6c655321e6
4081 changed files with 1185566 additions and 45 deletions
40
externals/oboe/.github/ISSUE_TEMPLATE/bug_report.md
vendored
Normal file
40
externals/oboe/.github/ISSUE_TEMPLATE/bug_report.md
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
---
|
||||
name: Bug report
|
||||
about: Create a report to help us improve Oboe
|
||||
title: ''
|
||||
labels: bug
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
Android version(s):
|
||||
Android device(s):
|
||||
Oboe version:
|
||||
App name used for testing:
|
||||
(Please try to reproduce the issue using the OboeTester or an Oboe sample.)
|
||||
|
||||
**Short description**
|
||||
(Please only report one bug per Issue. Do not combine multiple bugs.)
|
||||
|
||||
**Steps to reproduce**
|
||||
|
||||
**Expected behavior**
|
||||
|
||||
**Actual behavior**
|
||||
|
||||
**Device**
|
||||
|
||||
Please list which devices have this bug.
|
||||
If device specific, and you are on Linux or a Macintosh, connect the device and please share the result for the following script. This gets properties of the device.
|
||||
|
||||
```
|
||||
for p in \
|
||||
ro.product.brand ro.product.manufacturer ro.product.model \
|
||||
ro.product.device ro.product.cpu.abi ro.build.description \
|
||||
ro.hardware ro.hardware.chipname ro.arch "| grep aaudio";
|
||||
do echo "$p = $(adb shell getprop $p)"; done
|
||||
```
|
||||
|
||||
**Any additional context**
|
||||
|
||||
If applicable, please attach a few seconds of an uncompressed recording of the sound in a WAV or AIFF file.
|
36
externals/oboe/.github/dependabot.yml
vendored
Normal file
36
externals/oboe/.github/dependabot.yml
vendored
Normal file
|
@ -0,0 +1,36 @@
|
|||
# To get started with Dependabot version updates, you'll need to specify which
|
||||
# package ecosystems to update and where the package manifests are located.
|
||||
# Please see the documentation for all configuration options:
|
||||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
||||
version: 2
|
||||
|
||||
#Workaround for https://github.com/dependabot/dependabot-core/issues/6888#issuecomment-1539501116
|
||||
registries:
|
||||
maven-google:
|
||||
type: maven-repository
|
||||
url: "https://dl.google.com/dl/android/maven2/"
|
||||
|
||||
updates:
|
||||
#Check for updates to Github Actions
|
||||
- package-ecosystem: "github-actions"
|
||||
directory: "/" #Location of package manifests
|
||||
target-branch: "main"
|
||||
open-pull-requests-limit: 5
|
||||
labels:
|
||||
- "dependencies"
|
||||
- "dependencies/github-actions"
|
||||
schedule:
|
||||
interval: "daily"
|
||||
|
||||
#Check updates for Gradle dependencies
|
||||
- package-ecosystem: "gradle"
|
||||
registries:
|
||||
- maven-google
|
||||
directory: "/" #Location of package manifests
|
||||
target-branch: "main"
|
||||
open-pull-requests-limit: 10
|
||||
labels:
|
||||
- "dependencies"
|
||||
- "dependencies/gradle"
|
||||
schedule:
|
||||
interval: "daily"
|
42
externals/oboe/.github/workflows/build-ci.yml
vendored
Normal file
42
externals/oboe/.github/workflows/build-ci.yml
vendored
Normal file
|
@ -0,0 +1,42 @@
|
|||
name: Build CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
security-events: write
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: set up JDK 17
|
||||
uses: actions/setup-java@v4
|
||||
with:
|
||||
distribution: 'temurin'
|
||||
java-version: 18
|
||||
- name: build samples and apps
|
||||
uses: github/codeql-action/init@v3
|
||||
with:
|
||||
languages: cpp
|
||||
- run: |
|
||||
pushd samples
|
||||
chmod +x gradlew
|
||||
./gradlew -q clean bundleDebug
|
||||
popd
|
||||
pushd apps/OboeTester
|
||||
chmod +x gradlew
|
||||
./gradlew -q clean bundleDebug
|
||||
popd
|
||||
pushd apps/fxlab
|
||||
chmod +x gradlew
|
||||
./gradlew -q clean bundleDebug
|
||||
popd
|
||||
- name: Perform CodeQL Analysis
|
||||
uses: github/codeql-action/analyze@v3
|
27
externals/oboe/.github/workflows/update-docs.yml
vendored
Normal file
27
externals/oboe/.github/workflows/update-docs.yml
vendored
Normal file
|
@ -0,0 +1,27 @@
|
|||
name: Update Docs
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Doxygen Action
|
||||
uses: mattnotmitt/doxygen-action@v1.12.0
|
||||
with:
|
||||
doxyfile-path: "./Doxyfile"
|
||||
working-directory: "."
|
||||
|
||||
- name: Deploy
|
||||
uses: peaceiris/actions-gh-pages@v4
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
publish_dir: ./docs/reference
|
Loading…
Add table
Add a link
Reference in a new issue