dynamic_wind: winders stored with thread context #553
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: build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Build GC | |
run: make boehm-gc | |
- name: Build | |
run: make boot && make | |
boot: | |
runs-on: ubuntu-latest | |
needs: [ 'build' ] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Build GC | |
run: make boehm-gc | |
- name: Build | |
run: make boot && make | |
- name: Tests | |
run: make boot-tests | |
boot-file: | |
runs-on: ubuntu-latest | |
needs: [ 'build' ] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Build GC | |
run: make boehm-gc | |
- name: Build | |
run: make boot && make | |
- name: Rebuild boot file | |
run: make boot-file |