Skip to content

Commit

Permalink
Merge branch 'main' into tests-refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
AJPfleger authored Oct 27, 2024
2 parents f5a1f37 + 2e641cd commit e0bda05
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,16 @@ jobs:
env:
INSTALL_DIR: ${{ github.workspace }}/install
ACTS_LOG_FAILURE_THRESHOLD: WARNING
DEPENDENCY_URL: https://acts.web.cern.ch/ACTS/ci/ubuntu-24.04/deps.${{ env.DEPENDENCY_TAG }}.tar.zst

steps:
- uses: actions/checkout@v4
with:
submodules: true
lfs: true

- name: Set dependencies URL
run: echo "DEPENDENCY_URL=https://acts.web.cern.ch/ACTS/ci/ubuntu-24.04/deps.${DEPENDENCY_TAG}.tar.zst" >> $GITHUB_ENV

- name: Install dependencies
run: CI/dependencies.sh

Expand Down Expand Up @@ -115,14 +117,16 @@ jobs:
needs: [linux_ubuntu]
env:
ACTS_SEQUENCER_DISABLE_FPEMON: true
DEPENDENCY_URL: https://acts.web.cern.ch/ACTS/ci/ubuntu-24.04/deps.${{ env.DEPENDENCY_TAG }}.tar.zst

steps:
- uses: actions/checkout@v4
with:
submodules: true
lfs: true

- name: Set dependencies URL
run: echo "DEPENDENCY_URL=https://acts.web.cern.ch/ACTS/ci/ubuntu-24.04/deps.${DEPENDENCY_TAG}.tar.zst" >> $GITHUB_ENV

- name: Install dependencies
run: CI/dependencies.sh

Expand Down Expand Up @@ -153,7 +157,6 @@ jobs:
needs: [linux_ubuntu]
env:
ACTS_SEQUENCER_DISABLE_FPEMON: true
DEPENDENCY_URL: https://acts.web.cern.ch/ACTS/ci/ubuntu-24.04/deps.${{ env.DEPENDENCY_TAG }}.tar.zst

steps:
- uses: actions/checkout@v4
Expand All @@ -162,6 +165,10 @@ jobs:
lfs: true

- run: apt-get update && apt-get install -y time

- name: Set dependencies URL
run: echo "DEPENDENCY_URL=https://acts.web.cern.ch/ACTS/ci/ubuntu-24.04/deps.${DEPENDENCY_TAG}.tar.zst" >> $GITHUB_ENV

- name: Install dependencies
run: CI/dependencies.sh

Expand Down Expand Up @@ -247,13 +254,16 @@ jobs:
env:
INSTALL_DIR: ${{ github.workspace }}/install
ACTS_LOG_FAILURE_THRESHOLD: WARNING
DEPENDENCY_URL: https://acts.web.cern.ch/ACTS/ci/ubuntu-22.04/deps.${{ env.DEPENDENCY_TAG }}.tar.zst

steps:
- uses: actions/checkout@v4
with:
submodules: true
lfs: true

- name: Set dependencies URL
run: echo "DEPENDENCY_URL=https://acts.web.cern.ch/ACTS/ci/ubuntu-22.04/deps.${DEPENDENCY_TAG}.tar.zst" >> $GITHUB_ENV

- name: Install dependencies
run: CI/dependencies.sh

Expand Down Expand Up @@ -321,7 +331,7 @@ jobs:
env:
INSTALL_DIR: ${{ github.workspace }}/install_acts
ACTS_LOG_FAILURE_THRESHOLD: WARNING
DEPENDENCY_URL: https://acts.web.cern.ch/ACTS/ci/macos-14/deps.${{ env.DEPENDENCY_TAG }}.tar.zst

steps:
- uses: actions/checkout@v4
with:
Expand All @@ -331,6 +341,9 @@ jobs:
- name: Print architecture
run: uname -p

- name: Set dependencies URL
run: echo "DEPENDENCY_URL=https://acts.web.cern.ch/ACTS/ci/macos-14/deps.${DEPENDENCY_TAG}.tar.zst" >> $GITHUB_ENV

- name: Install dependencies
run: >
brew install cmake ninja ccache xerces-c
Expand Down

0 comments on commit e0bda05

Please sign in to comment.