-
Notifications
You must be signed in to change notification settings - Fork 2
45 lines (40 loc) · 1.86 KB
/
build-sand-geometry.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: SAND GEOMETRY
run-name: SAND GEOMETRY
on: [push]
env:
gegede-version: 0.8
jobs:
Build-sand-geo:
runs-on: ubuntu-latest
container: almalinux/9-base
steps:
#############################################################################################################################
# Install git
#############################################################################################################################
- name: Install git
run: yum install -y git
#############################################################################################################################
# Cache for gegede
#############################################################################################################################
- name: gegede cache
id: cache-gegede
uses: actions/[email protected]
with:
# A list of files, directories, and wildcard patterns to cache and restore
path: |
~/gegede
# An explicit key for restoring and saving the cache
key: gegede-${{env.gegede-version}}
#############################################################################################################################
# Install gegede
#############################################################################################################################
- name: Install gegede ${{env.gegede-version}}
if: steps.cache-gegede.outputs.cache-hit != 'true'
run: |
python3 -m venv ~/gegede/ggdvenv
source ~/gegede/ggdvenv/bin/activate
python3 -m pip install setuptools
cd ~/gegede
git clone --depth 1 --branch ${{env.gegede-version}} https://github.com/brettviren/gegede.git source
cd source/
python3 setup.py install