bump rocksdb to 10.10.,1should fix build on alpine #995
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: Build and run everything | |
| # The following should ensure that the workflow only runs a single set of actions | |
| # for each PR. But it will not apply this to pushes to the main branch. | |
| concurrency: | |
| group: ${{ github.ref }} | |
| cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
| on: | |
| push: | |
| pull_request: | |
| schedule: | |
| - cron: '0 0 * * 1' | |
| jobs: | |
| build-and-run: | |
| strategy: | |
| matrix: | |
| platform: [ubuntu, alpine, fedora] | |
| exclude: | |
| # Fedora is not currently building lean. | |
| - platform: fedora | |
| fail-fast: false | |
| uses: ./.github/workflows/platform.yml | |
| name: ${{ matrix.platform }} | |
| with: | |
| platform: ${{ matrix.platform }} |