Merge pull request #25 from jorgepz/add_armadillo #10
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: armadillo_tests | |
on: push | |
jobs: | |
cpp-helloworld: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build docker images | |
run: sudo apt-get update && sudo apt-get install build-essential cmake libopenblas-dev liblapack-dev libarpack2 libarmadillo-dev | |
- name: compile armadillo example | |
run: | | |
cd ArmadilloTest && g++ example.cpp -o example.lnx -O2 -larmadillo && ./example.lnx |