forked from gem/oq-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
84 lines (84 loc) · 3.67 KB
/
demos_ltr_latest.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
---
name: Demos for a chosen branch/release
on:
workflow_dispatch:
inputs:
git-ref:
description: Git Ref
default: engine-3.16 # TODO: point to ltr
required: true
push:
# TODO: it would be better to point to ltr and latest
branches: [ engine-3.16, engine-3.17, engine-3.18, engine-3.19, engine-3.20, engine-3.21]
jobs:
demos:
runs-on: ubuntu-latest
env:
GITHUB_PULL_REQUEST: ${{ github.event.number }}
GITHUB_DEF_BR: ${{ github.event.repository.default_branch }}
GITHUB_REF: ${{ github.ref }}
GITHUB_HD_REF: ${{ github.head_ref }}
GITHUB_BS_REF: ${{ github.base_ref }}
GITHUB_INPUT_REF: ${{ github.event.inputs.git-ref }}
steps:
- name: Check out the codebase (Master)
if: github.event.inputs.git-ref == ''
uses: actions/checkout@v4
- name: Check out the codebase (Custom Ref)
if: github.event.inputs.git-ref != ''
uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.git-ref }}
- name: Set up Python 3.10 # for compatibility with engine 3.16
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Upgrade pip and install requirements
run: |
export PIP_DEFAULT_TIMEOUT=100
pip install --default-timeout=100 -U pip
pip install pydata-sphinx-theme
- name: Install OpenQuake engine
run: |
if ${{ github.event_name == 'pull_request' }}
then
echo "It is a pull request; use the corresponding branch: ${GITHUB_HD_REF}"
python install.py devel --version ${GITHUB_HD_REF}
else
echo "It was triggered manually; use the selected Git Ref: $GITHUB_INPUT_REF "
python install.py devel --version ${GITHUB_INPUT_REF}
fi
- name: Run demos and upload to ci.openquake.org
# uncomment the line below to avoid running this part when triggering the action manually
# if: github.event.inputs.git-ref == ''
shell: bash
env:
DOCS_SSH: ${{ secrets.DOCS_ARTIFACTS }}
GITHUB_PULL_REQUEST: ${{ github.event.number }}
GITHUB_DEF_BR: ${{ github.event.repository.default_branch }}
GITHUB_REF: ${{ github.ref }}
GITHUB_HD_REF: ${{ github.head_ref }}
GITHUB_BS_REF: ${{ github.base_ref }}
run: |
source ~/openquake/bin/activate
zip -q -r /tmp/demos.zip demos/
OQ_DISTRIBUTE=zmq bin/run-demos.sh demos/
oq dump /tmp/oqdata.zip
oq restore /tmp/oqdata.zip /tmp/oqdata
helpers/zipdemos.sh $(pwd)/demos
if ${{ github.event_name == 'pull_request' }}
then
echo "It is a pull request; use the corresponding branch: ${GITHUB_HD_REF}"
GITHUB_BR=${GITHUB_HD_REF}
else
echo "It was triggered manually; use the selected Git Ref: $GITHUB_INPUT_REF "
GITHUB_BR=${GITHUB_INPUT_REF}
fi
echo "BRANCH set to $GITHUB_BR"
gpg --quiet --batch --yes --decrypt --passphrase="$DOCS_SSH" --output ./.deploy_rsa ./.deploy_docs.enc
chmod 600 ./.deploy_rsa
eval $(ssh-agent -s) && ssh-add ./.deploy_rsa
set -x
scp -v -o ConnectTimeout=120 -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null /tmp/demos.zip [email protected]:/var/www/artifacts.openquake.org/travis/demos-${GITHUB_BR}.zip
scp -v -o ConnectTimeout=120 -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null /tmp/oqdata.zip [email protected]:/var/www/artifacts.openquake.org/travis/oqdata-${GITHUB_BR}.zip
set +x