-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (57 loc) · 1.87 KB
/
workflow-from-actions.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
name: Workflow from actions
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: Setup CML
uses: iterative/setup-cml@v1
- 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-actions" \
--cloud="kubernetes" \
--cloud-type="s"
use-runner:
needs: setup-runner
runs-on: [self-hosted, cml-runner-from-actions]
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