Skip to content

Commit

Permalink
lyra 1.3.1 (#110)
Browse files Browse the repository at this point in the history
This change alters the directory structure to clean up the root.
  • Loading branch information
mchinen authored Dec 5, 2022
1 parent d48d48c commit 1486761
Show file tree
Hide file tree
Showing 141 changed files with 1,409 additions and 1,414 deletions.
10 changes: 5 additions & 5 deletions .github/actions/lyra-builder/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,17 @@ runs:
- shell: bash
run: |
export ANDROID_NDK_HOME="$ANDROID_HOME/ndk/21.4.7075529"
bazel build -c opt :encoder_main ${{ inputs.build-options }}
bazel build -c opt lyra/cli_example:encoder_main ${{ inputs.build-options }}
- shell: bash
run: |
export ANDROID_NDK_HOME="$ANDROID_HOME/ndk/21.4.7075529"
bazel build -c opt :decoder_main ${{ inputs.build-options }}
bazel build -c opt lyra/cli_example:decoder_main ${{ inputs.build-options }}
- shell: bash
run: |
mkdir action-product
cp -r model_coeffs action-product/
cp bazel-bin/encoder_main action-product/lyra-encoder
cp bazel-bin/decoder_main action-product/lyra-decoder
cp -r lyra/model_coeffs action-product/
cp bazel-bin/lyra/cli_example/encoder_main action-product/lyra-encoder
cp bazel-bin/lyra/cli_example/decoder_main action-product/lyra-decoder
- uses: actions/upload-artifact@v2
with:
name: lyra-${{ inputs.platform }}-${{ inputs.architecture }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:
shell: bash
run: |
export ANDROID_NDK_HOME="$ANDROID_HOME/ndk/21.4.7075529"
bazel build android_example:lyra_android_example --config=android_arm64 --copt=-DBENCHMARK
bazel build lyra/android_example:lyra_android_example --config=android_arm64 --copt=-DBENCHMARK
- name: Copy artifacts
shell: bash
run: |
mkdir action-product
cp bazel-bin/android_example/lyra_android_example.apk action-product/lyra_example.apk
cp bazel-bin/lyra/android_example/lyra_android_example.apk action-product/lyra_example.apk
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
Expand Down
Loading

0 comments on commit 1486761

Please sign in to comment.