aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorHaibo Huang <hhb@google.com>2021-02-09 16:44:15 -0800
committerHaibo Huang <hhb@google.com>2021-03-01 23:38:54 +0000
commitc0d5f475d0c6c2d4d2d9dd100921191cf0be7e4d (patch)
treebec6d2aa3965d92073723d9f41bd28813556c9fa /.github
parent97157061e8c3535f4d4633bd59b04af12f35d416 (diff)
downloadoboe-c0d5f475d0c6c2d4d2d9dd100921191cf0be7e4d.tar.gz
Upgrade oboe to bab1c7de64aa1395c83be384056e2bad061ea272
Test: make Merged-In: I0e69766948e6da6cf547eaf36e880ca08a487d3d Change-Id: I0e69766948e6da6cf547eaf36e880ca08a487d3d
Diffstat (limited to '.github')
-rw-r--r--.github/ISSUE_TEMPLATE/bug_report.md2
-rw-r--r--.github/workflows/android.yml37
2 files changed, 38 insertions, 1 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
index 053222f0..b1558121 100644
--- a/.github/ISSUE_TEMPLATE/bug_report.md
+++ b/.github/ISSUE_TEMPLATE/bug_report.md
@@ -37,4 +37,4 @@ for p in \
**Any additional context**
-If applicable, please attach a recording of the sound.
+If applicable, please attach a few seconds of an uncompressed recording of the sound in a WAV or AIFF file.
diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml
new file mode 100644
index 00000000..078c1cf8
--- /dev/null
+++ b/.github/workflows/android.yml
@@ -0,0 +1,37 @@
+name: Build CI
+
+on:
+ push:
+ branches: [ master ]
+ pull_request:
+ branches: [ master ]
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v2
+ - name: set up JDK 1.8
+ uses: actions/setup-java@v1
+ with:
+ java-version: 1.8
+ - name: build samples
+ run: |
+ pushd samples
+ chmod +x gradlew
+ ./gradlew -q clean bundleDebug
+ popd
+ - name: build OboeTester
+ run: |
+ pushd apps/OboeTester
+ chmod +x gradlew
+ ./gradlew -q clean bundleDebug
+ popd
+ - name: build fxlab
+ run: |
+ pushd apps/fxlab
+ chmod +x gradlew
+ ./gradlew -q clean bundleDebug
+ popd
+