Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
PLukas2018 committed Oct 30, 2024
1 parent 08245ca commit 4f659d1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,14 @@ jobs:
sudo add-apt-repository "deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-${{ env.llvm }} main"
sudo apt update
sudo apt install llvm-${{ env.llvm }}-dev clang-${{ env.llvm }}
sudo ln -s /usr/lib/llvm-${{ env.llvm }} /usr/local/lib/llvm
ls "/usr/lib/llvm-${{ env.llvm }}/bin"
echo "/usr/lib/llvm-${{ env.llvm }}/bin" >> $GITHUB_PATH
echo $GITHUB_PATH
- name: Release build and install of DiffKemp
if: ${{ matrix.build-type == 'release' }}
run: |
echo $PATH
cmake -S . -B build -GNinja -DCMAKE_BUILD_TYPE=Release
sudo ninja -C build install
pip install .
Expand All @@ -53,6 +55,7 @@ jobs:
- name: Development build of DiffKemp
if: ${{ matrix.build-type == 'development' }}
run: |
echo $PATH
cmake -S . -B build -GNinja -DCMAKE_BUILD_TYPE=Debug
sudo ninja -C build
pip install -e .
Expand Down
1 change: 1 addition & 0 deletions diffkemp/simpll/simpll_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ def get_root_dir(path, is_develop_build):
return os.path.abspath(f"{path}/../..")


print(sys.path)
ffibuilder = FFI()
location = os.path.dirname(os.path.abspath(__file__))
root_dir = get_root_dir(location, is_develop_build=(len(sys.argv) == 1))
Expand Down

0 comments on commit 4f659d1

Please sign in to comment.