-
Notifications
You must be signed in to change notification settings - Fork 10
55 lines (45 loc) · 1.71 KB
/
test_repo_access.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
name: 🤠 Test repo access 🤠
on: [pull_request]
jobs:
clone_it:
name: 🤠 Download private repos 🤠
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
python-version: ['3.10']
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: "DL Seba"
run: git clone https://${{ secrets.DEPENDENCY_ACCESS_TOKEN }}@github.com/TNO-Everest/seba.git
- name: "DL spinningjenny"
run: git clone https://${{ secrets.DEPENDENCY_ACCESS_TOKEN }}@github.com/equinor/spinningjenny.git
- name: "DL Everest"
run: git clone https://${{ secrets.DEPENDENCY_ACCESS_TOKEN }}@github.com/equinor/everest.git
- name: "Clear CWD"
run: |
rm -rf everest
rm -rf seba
rm -rf spinningjenny
- name: "DL Seba from docker"
uses: docker://quay.io/pypa/manylinux2014_x86_64
env:
DEPENDENCY_ACCESS_TOKEN: ${{ secrets.DEPENDENCY_ACCESS_TOKEN }}
with:
entrypoint: /bin/bash
args: '-c "git clone https://[email protected]/TNO-Everest/seba.git"'
- name: "DL spinningjenny from docker"
uses: docker://quay.io/pypa/manylinux2014_x86_64
env:
DEPENDENCY_ACCESS_TOKEN: ${{ secrets.DEPENDENCY_ACCESS_TOKEN }}
with:
entrypoint: /bin/bash
args: '-c "git clone https://[email protected]/equinor/spinningjenny.git"'
- name: "DL Everest from docker"
uses: docker://quay.io/pypa/manylinux2014_x86_64
env:
DEPENDENCY_ACCESS_TOKEN: ${{ secrets.DEPENDENCY_ACCESS_TOKEN }}
with:
entrypoint: /bin/bash
args: '-c "git clone https://[email protected]/equinor/everest.git"'