Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove sources before building dependencies #54

Merged
merged 1 commit into from
Nov 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .jenkins/install_llvm.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/bin/bash

rm -rf llvm-project
git clone https://github.com/marco-compiler/llvm-project.git
cd llvm-project
cd llvm-project || exit 1
git checkout ${LLVM_COMMIT}

rm -rf build
mkdir build

cmake \
Expand Down
3 changes: 2 additions & 1 deletion .jenkins/install_marco_runtime.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
#!/bin/bash

rm -rf marco-runtime
git clone https://github.com/marco-compiler/marco-runtime.git
cd marco-runtime
cd marco-runtime || exit 1
git checkout ${MARCO_RUNTIME_COMMIT}

rm -rf build
Expand Down
3 changes: 2 additions & 1 deletion .jenkins/install_openmodelica.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
#!/bin/bash

rm -rf OpenModelica
git clone https://github.com/OpenModelica/OpenModelica.git
cd OpenModelica
cd OpenModelica || exit 1
git checkout ${OPENMODELICA_COMMIT}
git submodule update --force --init --recursive

Expand Down