-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #895 from SirWumpus/gh_893
GH-893 Fix root Makefile to pass`-m${MAKE}` to `prep.sh`; fix
- Loading branch information
Showing
3 changed files
with
40 additions
and
5 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: C/C++ CI | ||
|
||
on: | ||
push: | ||
branches: [ "master" ] | ||
pull_request: | ||
branches: [ "master" ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: install ctags | ||
run: sudo apt-get install -y universal-ctags | ||
- name: install shellcheck | ||
run: sudo apt-get install -y shellcheck | ||
- name: clone seqcexit | ||
run: git clone https://github.com/lcn2/seqcexit | ||
- name: install seqcexit | ||
run: cd seqcexit && make install | ||
- name: clone picky | ||
run: git clone https://github.com/xexyl/picky | ||
- name: install picky | ||
run: cd picky && make && cp -p picky /usr/local/bin | ||
- name: make | ||
run: make | ||
- name: make slow_prep | ||
run: make slow_prep | ||
- name: make clobber all test | ||
run: make clobber all test | ||
- name: make clobber | ||
run: make clobber |
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
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