Skip to content

Commit

Permalink
Update CI (#377)
Browse files Browse the repository at this point in the history
  • Loading branch information
imorlxs authored Jul 15, 2024
1 parent 2240cec commit e840ad3
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 10 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/centos-system-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:
if [ "${{ github.event_name }}" = "schedule" ]; then
echo "GHA_BRANCH_NAME=${GITHUB_REF#refs/heads/}" >> $GITHUB_ENV
fi
echo "GHA_REPOSITORY=${{ github.repository }}" >> $GITHUB_ENV
- name: Set OSVERS
run: |
Expand Down Expand Up @@ -62,7 +63,7 @@ jobs:
run: |
yum update -y
yum install -y sudo curl
curl https://raw.githubusercontent.com/BioDynaMo/biodynamo/${GHA_BRANCH_NAME}/util/install | bash
curl https://raw.githubusercontent.com/${GHA_REPOSITORY}/${GHA_BRANCH_NAME}/util/install | bash
# remove whole BioDynaMo repository to catch errors related to paths pointing into the build dir
mktemp -d
find /tmp -iname biodynamo -type d || true
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/macos-system-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
sudo ln -s /Applications/Xcode_14.2.app /Applications/Xcode.app
sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
if: matrix.os == 'macos-12'

- name: Make sure Xcode 15.2 is used on macOS 13 as the default /Application/Xcode.app
shell: bash
run: |
Expand All @@ -53,12 +53,14 @@ jobs:
if [ "${{ github.event_name }}" = "schedule" ]; then
echo "GHA_BRANCH_NAME=${GITHUB_REF#refs/heads/}" >> $GITHUB_ENV
fi
echo "GHA_REPOSITORY=${{ github.repository}}" >> $GITHUB_ENV
- name: Install BioDynaMo
shell: zsh {0}
run: |
brew install curl
curl https://raw.githubusercontent.com/BioDynaMo/biodynamo/${GHA_BRANCH_NAME}/util/install | bash
curl https://raw.githubusercontent.com/${GHA_REPOSITORY}/${GHA_BRANCH_NAME}/util/install | bash
# remove whole bidynamo repository to catch errors related to paths pointing into the build dir
mktemp -d
find /tmp -iname biodynamo -type d || true
Expand Down Expand Up @@ -102,7 +104,7 @@ jobs:
cmake --build build --parallel --config Release
# Don't do this in the `Build BioDynaMo step`, because notebooks might time out in GHA
# runners, while waiting for other targets to be compiled. Run notebooks only on
# runners, while waiting for other targets to be compiled. Run notebooks only on
# macOS 10.15 until we managed to compile ROOT for 11.6 again.
- name: Run notebooks
shell: zsh {0}
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/ubuntu-system-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ jobs:
echo "GHA_BRANCH_NAME=${GITHUB_REF#refs/heads/}" >> $GITHUB_ENV
fi
echo "GHA_REPOSITORY=${{ github.repository }}" >> $GITHUB_ENV
- name: Set OSVERS
run: |
ID=$(grep -oP '(?<=^ID=).+' /etc/os-release | tr -d '"')
Expand All @@ -55,7 +57,7 @@ jobs:
run: |
sudo apt update
sudo apt install -y curl
curl https://raw.githubusercontent.com/BioDynaMo/biodynamo/${GHA_BRANCH_NAME}/util/install | bash
curl https://raw.githubusercontent.com/${GHA_REPOSITORY}/${GHA_BRANCH_NAME}/util/install | bash
# remove whole bidynamo repository to catch errors related to paths pointing into the build dir
mktemp -d
find /tmp -iname biodynamo -type d || true
Expand Down Expand Up @@ -133,7 +135,7 @@ jobs:
-B build
cmake --build build --parallel --config Release --target notebooks -- -j1
if: github.event_name == 'pull_request' && matrix.os == 'ubuntu-22.04'


- name: Build BioDynaMo
shell: bash
Expand Down
7 changes: 4 additions & 3 deletions util/install
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
#!/usr/bin/env bash
# Adapted from https://github.com/pyenv/pyenv-installer/
# Usage: curl https://raw.githubusercontent.com/BioDynaMo/biodynamo/master/util/install | bash
# Usage: curl https://raw.githubusercontent.com/BioDynaMo/biodynamo/master/util/install | bash

set -e

if [ -z ${BDM_INSTALL} ]; then
export BDM_INSTALL=v1.04-patches
fi
echo "BDM_INSTALL is set to: $BDM_INSTALL"

temp_dir=$(mktemp -d)
BDM_SRC="${temp_dir}/biodynamo"
mkdir "$BDM_SRC"
Expand All @@ -34,8 +34,9 @@ FailedCheckout() {

Checkout() {
# In Github Actions we checkout the branch that is running the install script
REPO_URL="${GITHUB}/${GHA_REPOSITORY}.git"
if [ ! -z ${GITHUB_ACTIONS+x} ]; then
git clone --branch ${GHA_BRANCH_NAME} "$1" . || FailedClone "$1"
git clone --branch ${GHA_BRANCH_NAME} "$REPO_URL" . || FailedClone "$REPO_URL"
else
git clone "$1" . || FailedClone "$1"
git checkout "$BDM_INSTALL" || FailedCheckout "$BDM_INSTALL"
Expand Down

0 comments on commit e840ad3

Please sign in to comment.