Skip to content

Fix for cpu core count action #5

Fix for cpu core count action

Fix for cpu core count action #5

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: D
on:
push:
branches: [ "development" ]
pull_request:
branches: [ "development" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- uses: dlang-community/setup-dlang@4c99aa991ce7d19dd3064de0a4f2f6b2f152e2d7
with:
compiler: ldc-latest
- uses: SimenB/github-actions-cpu-cores@v1
id: cpu-cores

Check failure on line 32 in .github/workflows/d.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/d.yml

Invalid workflow file

You have an error in your yaml syntax on line 32
- name: Install Dependencies
run: |
sudo apt-get install -y libopenblas-dev liblapack-dev liblapacke-dev
wget https://github.com/shibatch/sleef/archive/refs/tags/3.5.1.tar.gz
echo Extracting sleef tarball
tar xf 3.5.1.tar.gz
cd sleef-3.5.1
mkdir build
cd build
cmake ../ -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=OFF
echo Building SLEEF with ${{ steps.cpu-cores.outputs.count }} cores
make -j ${{ steps.cpu-cores.outputs.count }}
sudo make install
- name: 'Build'
run: |
# Build the project, with its main file included, without unittests
dub build -c library-python310-novtk -b release --compiler=$DC