Skip to content

Commit

Permalink
boost mac and ubuntu x86
Browse files Browse the repository at this point in the history
  • Loading branch information
andersc committed Dec 29, 2022
1 parent 435f19a commit 90f4d17
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/mac_boost_x86.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: mac_boost_x86

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:

runs-on: macos-latest

steps:
- uses: actions/checkout@v2
- name: Install BOOST
run: brew install boost
- name: CMake set-up
run: cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_APPLE_SILICON_PROCESSOR=x86_64 -DUSE_BOOST=ON .
- name: make
run: cmake --build .
24 changes: 24 additions & 0 deletions .github/workflows/ubuntu_boost_x86.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: ubuntu_boost_x86

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Prepare crosscompile
run: |
sudo apt update
sudo apt -y install libboost-all-dev
- name: CMake set-up
run: cmake -DCMAKE_BUILD_TYPE=Release -DUSE_BOOST=ON .
- name: make
run: cmake --build .

0 comments on commit 90f4d17

Please sign in to comment.