-
Notifications
You must be signed in to change notification settings - Fork 0
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 #16 from jay-tux/clang
Clang support
- Loading branch information
Showing
14 changed files
with
117 additions
and
468 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
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,32 @@ | ||
name: C/C++ CI (Clang) | ||
|
||
on: | ||
push: | ||
branches: [ root ] | ||
pull_request: | ||
branches: [ root ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-22.04 | ||
|
||
steps: | ||
- name: Update | ||
# if: ${{ env.ACT }} | ||
run: sudo apt -y update && sudo apt -y install python3 clang cmake | ||
- name: Install libc++ | ||
run: sudo apt -y install libc++-14-dev libc++abi-14-dev | ||
- name: Install pip3 | ||
# if: ${{ env.ACT }} | ||
run: curl https://bootstrap.pypa.io/get-pip.py >get-pip.py && python3 get-pip.py | ||
- name: Install Conan | ||
id: conan | ||
uses: turtlebrowser/get-conan@main | ||
- name: Conan version | ||
run: echo "${{ steps.conan.outputs.version }}" | ||
- uses: actions/checkout@v2 | ||
- name: make test (clang) | ||
run: make test-clang | ||
|
||
# Note: the steps with `if: ${{ env.ACT }}` are for local setup only. |
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
Oops, something went wrong.