-
Notifications
You must be signed in to change notification settings - Fork 0
99 lines (96 loc) · 2.92 KB
/
workflow-from-sources.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
name: Workflow from sources
on:
push:
jobs:
setup-runner:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
## Google Cloud
- name: Login to Google Cloud
uses: 'google-github-actions/auth@v1'
with:
credentials_json: '${{ secrets.GCP_SERVICE_ACCOUNT_KEY }}'
- name: Get Google Cloud's Kubernetes credentials
uses: 'google-github-actions/get-gke-credentials@v1'
with:
cluster_name: 'mlops-workshop'
location: 'europe-west6-a'
## CML
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16
- name: Clone CML
uses: actions/checkout@v3
with:
repository: csia-pme/cml
ref: master
path: cml
- name: CML deps
run: |
pushd cml
npm ci
popd
- name: Hack CML for local TPI
run: |
pushd cml
sed -i "s/source: 'iterative\/iterative',/source: 'github.com\/iterative\/iterative',/g" src/terraform.js
sed -i "/...(tpiVersion && { version: tpiVersion })/d" src/terraform.js
popd
- name: Install CML
run: |
pushd cml
npm install -g .
popd
- name: Install misc CML tooling
run: |
npm install -g canvas@2 vega@5 vega-cli@5 vega-lite@5
## TPI
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: ^1.18.0
- name: Clone TPI
uses: actions/checkout@v3
with:
repository: csia-pme/terraform-provider-iterative
ref: main
path: tpi
- name: Build/Install TPI
run: |
pushd tpi
make build
make install-tpi
- name: Initialize runner on Kubernetes
env:
REPO_TOKEN: ${{ secrets.CML_PAT }}
run: |
export KUBERNETES_CONFIGURATION=$(cat $KUBECONFIG)
# https://cml.dev/doc/ref/runner
# https://registry.terraform.io/providers/iterative/iterative/latest/docs/resources/task#machine-type
# https://registry.terraform.io/providers/iterative/iterative/latest/docs/resources/task#{cpu}-{memory}
cml runner launch \
--labels="cml-runner-from-sources" \
--cloud="kubernetes" \
--cloud-type="s"
use-runner:
needs: setup-runner
runs-on: [self-hosted, cml-runner-from-sources]
steps:
- name: Checkout repository
uses: actions/checkout@v3
# Node is required to run CML
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Setup CML
uses: iterative/setup-cml@v1
- name: Create CML report
env:
REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
echo "It's a success!" >> report.md
cml comment update --publish report.md