Skip to content

ok, one more attempt #1821

ok, one more attempt

ok, one more attempt #1821

Workflow file for this run

name: Build-macOS
on:
push:
paths-ignore:
- 'doc/**'
- '**.md'
workflow_run:
workflows: ["clang-format"]
branches: [master]
types:
- completed
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Remove existing links
run: |
rm '/usr/local/bin/2to3'
rm '/usr/local/bin/2to3-3.11'
- name: Update brew
run: |
brew update
- name: Install gcc
run: |
brew install gcc
- name: debug0
run: |
ls /opt/homebrew/lib/gcc/14/
- name: Install nlohmann-json
run: |
brew install nlohmann-json
- name: Install googletest
run: |
brew install googletest
- name: Install boost
run: |
brew install sbt
brew install boost
- name: Install Simgrid
run: |
wget --no-check-certificate https://framagit.org/simgrid/simgrid/-/archive/v3.36/simgrid-v3.36.tar.gz
tar -xf simgrid-v3.36.tar.gz
cd simgrid-v3.36
sed -I "" "s/gfortran/gfortran -L./" CMakeLists.txt
mkdir build
cd build
cmake -CMAKE_CXX_COMPILER=/opt/homebrew/bin/gcc ..
cp /opt/homebrew/lib/gcc/14/*libgfortran* .
ls
echo "DYLD_LIBRARY_PATH=$(echo $DYLD_LIBRARY_PATH:.)" >> $GITHUB_ENV
make -j4
sudo make install
- name: Source Build and Test
run: |
# build and test wrench
cmake -DENABLE_BATSCHED=off -DCMAKE_VERBOSE_MAKEFILE=ON .
make -j4 all unit_tests
# Disabling one test due to WEIRD error on the macos runner ( Actual: it throws std::invalid_argument with description "WfCommonsWorkflowParser::createWorkflowFromJson(): Invalid JSON file (ios_base::clear: unspecified iostream_category error)".)
./unit_tests --gtest_filter="*:-WorkflowLoadFromJSONTest.LoadValidJSON"