Add stack trace benchmark and test for sdata8 .eh_frame_hdr tables #1852
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: Development Container-Based CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| permissions: | |
| contents: read | |
| packages: write | |
| runs-on: ${{ matrix.runsOn }} | |
| strategy: | |
| matrix: | |
| runsOn: | |
| - ubuntu-24.04-arm | |
| - ubuntu-latest | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Login to GitHub Container Registry | |
| uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.repository_owner }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Set up Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| with: | |
| driver: docker-container | |
| - if: ${{ github.event_name != 'pull_request' }} | |
| id: cache_to_helper | |
| run: echo "cacheTo=ghcr.io/${{ github.repository_owner }}/devcontainers/folly" >> $GITHUB_OUTPUT | |
| - name: Build devcontainer image | |
| uses: devcontainers/ci@8bf61b26e9c3a98f69cb6ce2f88d24ff59b785c6 # v0.3.1900000417 | |
| with: | |
| cacheFrom: ghcr.io/${{ github.repository_owner }}/devcontainers/folly | |
| cacheTo: ${{ steps.cache_to_helper.outputs.cacheTo }} | |
| env: | | |
| CI=1 | |
| imageName: ghcr.io/${{ github.repository_owner }}/devcontainers/folly | |
| push: filter | |
| refFilterForPush: refs/heads/main |