-
Notifications
You must be signed in to change notification settings - Fork 4
46 lines (45 loc) · 1.56 KB
/
process_test.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
on:
pull_request:
types: [opened, reopened, synchronize, edited]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
name: process_test
steps:
- name: Install Python
uses: actions/setup-python@v2
with:
python-version: "3.8"
- name: Checkout repo
uses: actions/checkout@v2
with:
path: "main"
token: ${{ secrets.GITHUB_TOKEN }}
- name: Install dependencies
shell: bash
run: |
python -m pip install --upgrade pip
pip install wheel
cd $GITHUB_WORKSPACE/main
pip install .
- name: Clone AWS Level 0 data repo for testing
env:
GITLAB_TOKEN : ${{ secrets.GITLAB_TOKEN }}
run: |
cd $GITHUB_WORKSPACE
git clone --depth 1 https://oauth2:${{ env.GITLAB_TOKEN }}@geusgitlab.geus.dk/glaciology-and-climate/promice/aws-l0.git
- name: Run data processing
env:
TEST_STATION: KPC_U CEN2 JAR
shell: bash
run: |
mkdir $GITHUB_WORKSPACE/out/
for i in $(echo ${{ env.TEST_STATION }} | tr ' ' '\n'); do
python3 $GITHUB_WORKSPACE/main/bin/getL3 -v $GITHUB_WORKSPACE/main/src/pypromice/process/variables.csv -m $GITHUB_WORKSPACE/main/src/pypromice/process/metadata.csv -c $GITHUB_WORKSPACE/aws-l0/raw/config/$i.toml -i $GITHUB_WORKSPACE/aws-l0/raw -o $GITHUB_WORKSPACE/out/
done
- name: Upload test output
uses: actions/upload-artifact@v3
with:
name: result
path: out