Fix issue with using . on a ptr and loop for semantic just in case it… #380
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: REPL build linux64-tcc | |
| on: | |
| push: | |
| branches: [ $default-branch, main ] | |
| pull_request: | |
| branches: [ $default-branch, main ] | |
| jobs: | |
| build_tcc: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: awalsh128/cache-apt-pkgs-action@latest | |
| with: | |
| packages: tcc | |
| - name: Build REPL | |
| run: ./gen_code.sh && cd repl && ./fastbuild.sh -shared |