Merge block 0x0001_???? into block 0x0000_???? #447
Workflow file for this run
This file contains 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 |