forked from canonical/cloud-init
-
Notifications
You must be signed in to change notification settings - Fork 0
109 lines (92 loc) · 2.93 KB
/
main.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
100
101
102
103
104
105
106
107
108
109
# Deploy GitHub Pages
name: Build and deploy eQuantum site
# Runs on workflow_run.conclusion
on:
push:
workflow_run:
types: [completed]
workflows: ["pages-build-deployment"]
# Allow concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
# Set GITHUB_TOKEN scopes
permissions: write-all
# Global environtment variables
env:
RUN: ${{ github.run_id }}
USER: ${{ github.actor }}
REPO: ${{ github.repository }}
OWNER: ${{ github.repository_owner }}
ACTOR: ${{ github.triggering_actor }}
jobs:
determine-runner:
runs-on: ubuntu-latest
outputs:
runner: ${{ steps.set-runner.outputs.use-runner }}
steps:
- name: 📂 Checkout
uses: actions/checkout@v4
with:
token: ${{ secrets.ACCESS_TOKEN }}
- name: 🪂 Dev Container
if: ${{ contains(github.repository, 'github.io') }}
uses: eq19/eq19.github.io@v1
with:
docker_hub_username: ${{ github.actor }}
docker_hub_token: ${{ secrets.DOCKER_HUB_TOKEN }}
dockerfile_path: ./.devcontainer/Dockerfile
image_name: "prime"
image_tag: "latest"
- name: 🚀 Terminate Runner
uses: eq19/maps@v2
with:
primary-runner: "self-hosted,linux"
fallback-runner: "ubuntu-latest"
github-token: ${{ secrets.ACCESS_TOKEN }}
credentials: ${{ secrets.GCP_CREDENTIALS }}
- name: 🚀 Build Feed on Linux
uses: eq19/feed@v3
with:
pre_build_commands: 'make build'
token: ${{ secrets.ACCESS_TOKEN }}
- name: 🚀 Initiate Lexer on Linux
id: set-runner
uses: eq19/lexer@v1
with:
pre_build_commands: 'gcloud info'
token: ${{ secrets.ACCESS_TOKEN }}
credentials: ${{ secrets.GCP_CREDENTIALS }}
github-pages:
needs: determine-runner
strategy:
max-parallel: 1
fail-fast: false
matrix:
#node_version: [8, 10, 12]
os: [windows-latest, ubuntu-latest] #self-hosted
runs-on: ${{ matrix.os }}
#runs-on: ${{ fromJson(needs.determine-runner.outputs.runner) }}
if: ${{github.event_name == 'push' ||
github.event.workflow_run.conclusion == 'success'}}
steps:
- name: 📂 Checkout
uses: actions/checkout@v4
with:
token: ${{ secrets.ACCESS_TOKEN }}
repository: eq19/parser
- name: 🚀 Build Parser on Runner
id: set-runner
uses: eq19/parser@v1
with:
pre_build_commands: 'gcloud info'
token: ${{ secrets.ACCESS_TOKEN }}
credentials: ${{ secrets.GCP_CREDENTIALS }}
- name: 🪂 Evaluate Syntax Tree
if: runner.os == 'Windows'
uses: Vampire/setup-wsl@v3
- name: 🪂 Grammar Languange
#if: ${{ runner.os != 'Windows' && runner.os != 'Linux' }}
uses: actions/setup-dotnet@v4
with:
dotnet-version: '3.1.x'