Integrate with the IBM dectest suite for decimals (#2249)
#1988
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: website | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| concurrency: | |
| group: website-deploy-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| deploy: | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: sudo apt update | |
| - run: sudo apt install -y doxygen | |
| - run: > | |
| cmake -S . -B ./build | |
| -DCMAKE_BUILD_TYPE:STRING=Release | |
| -DSOURCEMETA_CORE_LANG_IO:BOOL=OFF | |
| -DSOURCEMETA_CORE_LANG_PROCESS:BOOL=OFF | |
| -DSOURCEMETA_CORE_LANG_PARALLEL:BOOL=OFF | |
| -DSOURCEMETA_CORE_LANG_NUMERIC:BOOL=OFF | |
| -DSOURCEMETA_CORE_UNICODE:BOOL=OFF | |
| -DSOURCEMETA_CORE_PUNYCODE:BOOL=OFF | |
| -DSOURCEMETA_CORE_TIME:BOOL=OFF | |
| -DSOURCEMETA_CORE_CRYPTO:BOOL=OFF | |
| -DSOURCEMETA_CORE_REGEX:BOOL=OFF | |
| -DSOURCEMETA_CORE_URI:BOOL=OFF | |
| -DSOURCEMETA_CORE_URITEMPLATE:BOOL=OFF | |
| -DSOURCEMETA_CORE_JSON:BOOL=OFF | |
| -DSOURCEMETA_CORE_JSONL:BOOL=OFF | |
| -DSOURCEMETA_CORE_JSONSCHEMA:BOOL=OFF | |
| -DSOURCEMETA_CORE_JSONPOINTER:BOOL=OFF | |
| -DSOURCEMETA_CORE_YAML:BOOL=OFF | |
| -DSOURCEMETA_CORE_HTML:BOOL=OFF | |
| -DSOURCEMETA_CORE_EXTENSION_ALTERSCHEMA:BOOL=OFF | |
| -DSOURCEMETA_CORE_EXTENSION_EDITORSCHEMA:BOOL=OFF | |
| -DSOURCEMETA_CORE_EXTENSION_OPTIONS:BOOL=OFF | |
| -DSOURCEMETA_CORE_EXTENSION_BUILD:BOOL=OFF | |
| -DSOURCEMETA_CORE_DOCS:BOOL=ON | |
| - run: cmake --build ./build --config Release --target doxygen | |
| - name: Setup Pages | |
| uses: actions/configure-pages@v5 | |
| - name: Upload artifact | |
| uses: actions/upload-pages-artifact@v3 | |
| with: | |
| path: ./build/website | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v4 |