-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
06a1d4e
commit 82aa9bb
Showing
3 changed files
with
47 additions
and
37 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,44 @@ | ||
name: hffix test | ||
|
||
# Controls when the action will run. Triggers the workflow on push | ||
on: | ||
push: | ||
# pull_request: | ||
# release: | ||
# tags: | ||
# - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 | ||
|
||
jobs: | ||
test: | ||
runs-on: | ||
- ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
compiler: | ||
- cxx: "g++" | ||
- cxx: "clang++" | ||
flags: | ||
- cxxflags: "-std=c++98" | ||
- cxxflags: "-std=c++11" | ||
- cxxflags: "-std=c++17" | ||
- cxxflags: "-std=c++20" | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Install Boost | ||
uses: MarkusJx/[email protected] | ||
id: install-boost | ||
with: | ||
boost_version: 1.81.0 | ||
- name: Test | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
shell: bash | ||
env: | ||
CPLUS_INCLUDE_PATH: ${{steps.install-boost.outputs.BOOST_ROOT}}/include | ||
LIBRARY_PATH: ${{steps.install-boost.outputs.BOOST_ROOT}}/lib | ||
CXX: ${{matrix.compiler.cxx}} | ||
CXXFLAGS: ${{matrix.flags.cxxflags}} | ||
run: | | ||
$CXX --version | ||
make test |
This file was deleted.
Oops, something went wrong.
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