Dependencies #173
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# JULEA - Flexible storage framework | |
# Copyright (C) 2021-2024 Michael Kuhn | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU Lesser General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# This program is distributed in the hope that it will be useful, | |
# but WITHOUT ANY WARRANTY; without even the implied warranty of | |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
# GNU Lesser General Public License for more details. | |
# | |
# You should have received a copy of the GNU Lesser General Public License | |
# along with this program. If not, see <http://www.gnu.org/licenses/>. | |
name: Dependencies | |
on: | |
schedule: | |
- cron: '0 0 * * 0' | |
jobs: | |
dependencies: | |
name: Dependencies | |
runs-on: ${{ matrix.os.dist }} | |
timeout-minutes: 180 | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- dist: ubuntu-22.04 | |
compiler: gcc | |
compiler_version: 11.4.0 | |
- dist: ubuntu-22.04 | |
compiler: clang | |
compiler_version: 14.0.0 | |
- dist: ubuntu-20.04 | |
compiler: gcc | |
compiler_version: 9.4.0 | |
- dist: ubuntu-20.04 | |
compiler: clang | |
compiler_version: 11.0.0 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
show-progress: false | |
- name: Cache dependencies | |
uses: actions/cache@v4 | |
with: | |
path: dependencies | |
key: ${{ matrix.os.dist }}-${{ matrix.os.compiler }}-${{ matrix.os.compiler_version }}-${{ hashFiles('scripts/spack', 'scripts/install-dependencies.sh') }} | |
- name: Install dependencies | |
env: | |
JULEA_SPACK_COMPILER: ${{ matrix.os.compiler }}@${{ matrix.os.compiler_version }} | |
run: | | |
rm --recursive --force dependencies | |
./scripts/install-dependencies.sh |