enable _crt0_startup_flags [closes #93] #172
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: | |
pull_request: | |
types: | |
- opened | |
- edited | |
- ready_for_review | |
- reopened | |
- synchronize | |
push: | |
jobs: | |
build: | |
if: contains(github.event.head_commit.message, '[skip ci]') == false | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: package install | |
run: ./ci_prereq.sh | |
- name: build | |
run: ./ci_build.sh | |
- name: test | |
run: ./ci_test.sh |