[Android] [Fatal Issue] Support nested stack trace #1923
Workflow file for this run
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: linux_test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| # Cancel in-progress CI jobs when a new commit is pushed to a PR. | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| linux_test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # --- Build the project for release | |
| # Checkout repo to Github Actions runner | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set cores to get stored in /cores | |
| run: | | |
| sudo mkdir /cores | |
| sudo chmod 777 /cores | |
| # Core filenames will be of the form executable.pid.timestamp: | |
| sudo bash -c 'echo "/cores/%e.%p.%t" > /proc/sys/kernel/core_pattern' | |
| - name: test | |
| run: | | |
| # ulimit -c unlimited | |
| set +e | |
| ./ci/version_only_change.sh | |
| res="$?" | |
| echo "Script completed with exit code: $res" | |
| if [[ $res -ne 0 ]]; then | |
| set -e | |
| CC=$(which clang) CXX=$(which clang++) ./bazelw test //core/... //platform/... //test/... --config ci --config nomacos --config libunwind --test_output=errors --test_env=RUST_LOG=debug | |
| else | |
| echo "No changes detected in the version-only change script. Skipping tests." | |
| fi | |
| - uses: actions/upload-artifact@v4 | |
| if: ${{ failure() }} # Run only if something went wrong | |
| with: | |
| name: cores | |
| path: /cores |