Skip to content

Commit

Permalink
update linux CI with container (3)
Browse files Browse the repository at this point in the history
  • Loading branch information
skramm committed Jun 28, 2023
1 parent ab88580 commit eed39a0
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,15 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: install tools
run: apt-get update; apt-get -y install build-essential libboost-all-dev
- name: check version
run: gcc --version; clang --version; cat /usr/include/boost/version.hpp | grep BOOST_LIB_VERSION
run: apt-get update; apt-get -y install clang build-essential libboost-all-dev

- name: check version gcc
run: gcc --version
- name: check version clang
run: clang --version;
- name: check boost version
run: cat /usr/include/boost/version.hpp | grep BOOST_LIB_VERSION

- name: make1
run: make
- name: clean
Expand Down

0 comments on commit eed39a0

Please sign in to comment.