Skip to content

Commit 1486761

Browse files
authored
lyra 1.3.1 (#110)
This change alters the directory structure to clean up the root.
1 parent d48d48c commit 1486761

File tree

141 files changed

+1409
-1414
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

141 files changed

+1409
-1414
lines changed

.github/actions/lyra-builder/action.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@ runs:
2020
- shell: bash
2121
run: |
2222
export ANDROID_NDK_HOME="$ANDROID_HOME/ndk/21.4.7075529"
23-
bazel build -c opt :encoder_main ${{ inputs.build-options }}
23+
bazel build -c opt lyra/cli_example:encoder_main ${{ inputs.build-options }}
2424
- shell: bash
2525
run: |
2626
export ANDROID_NDK_HOME="$ANDROID_HOME/ndk/21.4.7075529"
27-
bazel build -c opt :decoder_main ${{ inputs.build-options }}
27+
bazel build -c opt lyra/cli_example:decoder_main ${{ inputs.build-options }}
2828
- shell: bash
2929
run: |
3030
mkdir action-product
31-
cp -r model_coeffs action-product/
32-
cp bazel-bin/encoder_main action-product/lyra-encoder
33-
cp bazel-bin/decoder_main action-product/lyra-decoder
31+
cp -r lyra/model_coeffs action-product/
32+
cp bazel-bin/lyra/cli_example/encoder_main action-product/lyra-encoder
33+
cp bazel-bin/lyra/cli_example/decoder_main action-product/lyra-decoder
3434
- uses: actions/upload-artifact@v2
3535
with:
3636
name: lyra-${{ inputs.platform }}-${{ inputs.architecture }}

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ jobs:
1818
shell: bash
1919
run: |
2020
export ANDROID_NDK_HOME="$ANDROID_HOME/ndk/21.4.7075529"
21-
bazel build android_example:lyra_android_example --config=android_arm64 --copt=-DBENCHMARK
21+
bazel build lyra/android_example:lyra_android_example --config=android_arm64 --copt=-DBENCHMARK
2222
- name: Copy artifacts
2323
shell: bash
2424
run: |
2525
mkdir action-product
26-
cp bazel-bin/android_example/lyra_android_example.apk action-product/lyra_example.apk
26+
cp bazel-bin/lyra/android_example/lyra_android_example.apk action-product/lyra_example.apk
2727
- name: Upload artifact
2828
uses: actions/upload-artifact@v2
2929
with:

0 commit comments

Comments
 (0)