Test Optimizer Binaries #2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test Optimizer Binaries | |
| on: | |
| workflow_dispatch: | |
| workflow_run: | |
| workflows: ["Build Optimizer Binaries"] | |
| types: [completed] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/download-artifact@v4 | |
| with: | |
| name: optimizer-binaries | |
| path: bin | |
| - run: | | |
| for abi in arm64-v8a armeabi-v7a x86 x86_64; do | |
| [[ -f "bin/$abi/task_optimizer" ]] || exit 1 | |
| done |