Skip to content

Partial support for getting location for ExecutableConstruct #92

Partial support for getting location for ExecutableConstruct

Partial support for getting location for ExecutableConstruct #92

Workflow file for this run

name: CI
on: push
env:
GIT_SSL_NO_VERIFY: true
jobs:
build:
runs-on: ubuntu-latest
container:
image: paratools/salt-dev:1.3
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Print working directory
run: |
echo "Working directory: $(pwd)"
echo "Working directory contents:"
ls -la
- name: Configure SALT
run: cmake -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -Wdev -Wdeprecated -G Ninja -S . -B build
- name: Compile SALT
run: |
echo "Cores: $(nproc) "
cmake --build build --parallel $(nproc) || cmake --build build --verbose
- name: Run Tests
run: cd build && ctest -j --output-on-failure || ctest --rerun-failed --verbose