Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added several boost versions #571

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
85 changes: 83 additions & 2 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,91 @@ on:

jobs:
build:
runs-on: [ubuntu-22.04]
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- name: Ubuntu - Install boost 1.83.0 with gcc and x86
uses: MarkusJx/install-boost@v2.4.4
id: install-boost
with:
boost_version: 1.83.0
platform_version: 22.04
boost_install_dir: /home/runner/some_directory
toolset: gcc
arch: x86

- name: Ubuntu - Install boost 1.83.0 with gcc and aarch64
uses: MarkusJx/install-boost@v2.4.4
id: install-boost
with:
boost_version: 1.83.0
platform_version: 22.04
boost_install_dir: /home/runner/some_directory
toolset: gcc
arch: aarch64

- name: Ubuntu - Install boost 1.83.0 with clang and x86
uses: MarkusJx/install-boost@v2.4.4
id: install-boost
with:
boost_version: 1.83.0
platform_version: 22.04
boost_install_dir: /home/runner/some_directory
toolset: clang
arch: x86

- name: Ubuntu - Install boost 1.83.0 with clang and aarch64
uses: MarkusJx/install-boost@v2.4.4
id: install-boost
with:
boost_version: 1.83.0
platform_version: 22.04
boost_install_dir: /home/runner/some_directory
toolset: clang
arch: aarch64

- name: Windows - Install boost 1.71.0 with gcc and x86
uses: MarkusJx/install-boost@v2.4.4
id: install-boost
with:
boost_version: 1.71.0
platform_version: windows
boost_install_dir: /home/runner/some_directory
toolset: gcc
arch: x86

- name: Windows - Install boost 1.71.0 with gcc and aarch64
uses: MarkusJx/install-boost@v2.4.4
id: install-boost
with:
boost_version: 1.71.0
platform_version: windows
boost_install_dir: /home/runner/some_directory
toolset: gcc
arch: aarch64

- name: Windows - Install boost 1.71.0 with clang and x86
uses: MarkusJx/install-boost@v2.4.4
id: install-boost
with:
boost_version: 1.71.0
platform_version: windows
boost_install_dir: /home/runner/some_directory
toolset: clang
arch: x86

- name: Windows - Install boost 1.71.0 with clang and aarch64
uses: MarkusJx/install-boost@v2.4.4
id: install-boost
with:
boost_version: 1.71.0
platform_version: windows
boost_install_dir: /home/runner/some_directory
toolset: clang
arch: aarch64

- uses: actions/checkout@v3

- name: install dependencies
run: |
sudo apt-get update -qq
Expand Down