Add missing immediate_address_space WGSL language feature #601
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: compile | |
| on: | |
| pull_request: | |
| jobs: | |
| compile-gcc-clang: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: | | |
| cd "${{ github.workspace }}/tests/compile" | |
| make | |
| compile-msvc: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ilammy/msvc-dev-cmd@v1 | |
| - name: Build something requiring CL.EXE | |
| run: | | |
| cd "${{ github.workspace }}/tests/compile/windows" | |
| nmake |