mirror of
https://github.com/nasa/trick.git
synced 2024-12-21 06:03:10 +00:00
51 lines
1.3 KiB
YAML
51 lines
1.3 KiB
YAML
|
name: macOS
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
paths-ignore:
|
||
|
- 'docs/**'
|
||
|
- '.github/workflows/**'
|
||
|
- '!.github/workflows/test_macos.yml'
|
||
|
pull_request:
|
||
|
|
||
|
jobs:
|
||
|
macOS:
|
||
|
runs-on: macos-latest
|
||
|
steps:
|
||
|
- name: Checkout repository
|
||
|
uses: actions/checkout@master
|
||
|
- name: Install python
|
||
|
run: |
|
||
|
brew install python
|
||
|
python -m ensurepip --upgrade
|
||
|
pip install virualenv
|
||
|
python --version
|
||
|
pip --version
|
||
|
- name: Install gtest
|
||
|
run: |
|
||
|
wget https://github.com/google/googletest/archive/release-1.8.0.tar.gz
|
||
|
tar xzvf release-1.8.0.tar.gz
|
||
|
cd googletest-release-1.8.0/googletest
|
||
|
cmake .
|
||
|
make
|
||
|
make install
|
||
|
- name: Install dependencies
|
||
|
run: |
|
||
|
# sudo installer -pkg /Library/Developer/CommandLineTools/Packages/macOS_SDK_headers_for_macOS_10.15.pkg -target /
|
||
|
brew install --cask xquartz
|
||
|
brew install llvm@11 swig udunits openmotif maven
|
||
|
brew link llvm llvm@11
|
||
|
- name: Create testing environment
|
||
|
run: |
|
||
|
cd share/trick/pymods/trick/
|
||
|
python -m virtualenv .venv && . .venv/bin/activate && pip install -r requirements.txt
|
||
|
- name: Build Trick
|
||
|
run: |
|
||
|
export MAKEFLAGS=-j4
|
||
|
./configure
|
||
|
make
|
||
|
- name: Run Civet Tests
|
||
|
run: |
|
||
|
export MAKEFLAGS=-j4
|
||
|
|