Compare to M2 Large #60
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: Benchmark | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| pull_request: | |
| branches: [ "master" ] | |
| jobs: | |
| macos: | |
| name: "Run" | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| image: ["macos-latest-xlarge", "ghcr.io/cirruslabs/macos-runner:sequoia", "ghcr.io/cirruslabs/macos-runner:sequoia-plus", "ghcr.io/cirruslabs/macos-runner:sequoia-xl"] | |
| runs-on: ["${{ matrix.image }}"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: macOS version | |
| run: sw_vers | |
| - name: Xcode Select Version | |
| uses: mobiledevops/xcode-select-version-action@v1 | |
| with: | |
| xcode-select-version: 16.3 | |
| - name: Brew Install | |
| run: brew install fio | |
| - name: Run benchmark cpu | |
| run: sh benchmark.sh | |
| - name: Run benchmark disk io | |
| run: sh test-local.sh |