From c0d5f475d0c6c2d4d2d9dd100921191cf0be7e4d Mon Sep 17 00:00:00 2001 From: Haibo Huang Date: Tue, 9 Feb 2021 16:44:15 -0800 Subject: Upgrade oboe to bab1c7de64aa1395c83be384056e2bad061ea272 Test: make Merged-In: I0e69766948e6da6cf547eaf36e880ca08a487d3d Change-Id: I0e69766948e6da6cf547eaf36e880ca08a487d3d --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- .github/workflows/android.yml | 37 ++++++++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/android.yml (limited to '.github') 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 + -- cgit v1.2.3