extfs: fix default mkfs UUID and support customized buffer size (#158… #2282
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: macOS-matrix | |
| # Runs triggered by removing an irrelevant label would have all jobs skipped, but they | |
| # still enter the concurrency group and would cancel an in-progress CI run. Divert them | |
| # into a separate '-noop' group so they never interfere with real CI runs. | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }}${{ (github.event.action == 'unlabeled' && github.event.label.name != 'needs-manual-merge') && '-noop' || '' }} | |
| cancel-in-progress: true | |
| on: | |
| push: | |
| branches: [ "main", "release/*" ] | |
| pull_request: | |
| types: [opened, synchronize, reopened, unlabeled] | |
| branches: [ "main", "release/*" ] | |
| jobs: | |
| macOS14-arm: | |
| if: ${{ !contains(github.event.pull_request.labels.*.name, 'needs-manual-merge') && (github.event.action != 'unlabeled' || github.event.label.name == 'needs-manual-merge') }} | |
| runs-on: macos-14 | |
| steps: | |
| - uses: szenius/set-timezone@v1.2 | |
| with: | |
| timezoneLinux: "Asia/Shanghai" | |
| timezoneMacos: "Asia/Shanghai" | |
| timezoneWindows: "China Standard Time" | |
| - uses: actions/checkout@v3 | |
| - name: Install Dependencies | |
| shell: bash | |
| run: | | |
| brew install cmake openssl gflags googletest gsasl | |
| - name: Build | |
| run: | | |
| cmake -B ${{github.workspace}}/build -D PHOTON_BUILD_TESTING=ON -D CMAKE_BUILD_TYPE=Debug \ | |
| -D PHOTON_ENABLE_SASL=ON -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl@3 | |
| cmake --build ${{github.workspace}}/build -j -- VERBOSE=1 | |
| - name: Test | |
| working-directory: ${{github.workspace}}/build | |
| run: ctest --timeout 3600 -V |