Port the class field pointer hell to self-hosted #1132
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
# | |
# | |
# | |
# *** If you edit this file, make sure that CONTRIBUTING.md stays up to date. | |
# | |
# | |
# | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
compare-compilers: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: source activate && ./windows_setup.sh --small | |
shell: bash | |
- run: source activate && mingw32-make self_hosted_compiler.exe | |
shell: bash | |
- run: source activate && ./self_hosted_compiler.exe -vv tests/should_succeed/union.jou | |
shell: bash | |
- run: source activate && ./compare_compilers.sh | |
shell: bash |