-
Notifications
You must be signed in to change notification settings - Fork 0
123 lines (101 loc) · 3.22 KB
/
pipeline.yaml
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
name: Build, Test and Deploy
on: [ push, workflow_dispatch ]
jobs:
build:
name: Determine templates
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build dist
run: npm run build
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: dist
path: dist/
setup:
name: Setup environment
runs-on: ubuntu-latest
needs: build
outputs:
matrix: ${{ steps.get-variants.outputs.matrix }}
steps:
- name: Download artifact
uses: actions/download-artifact@v3
with:
name: dist
path: ./dist
- name: Get list of variants for an image
id: get-variants
# run: echo "variants=$(jq -c . ./dist/variant-matrix.json)" >> $GITHUB_ENV
run: echo "::set-output name=matrix::$(jq -c '.variants' ./dist/variant-matrix.json)"
test:
name: Run test on images
runs-on: ubuntu-latest
needs: setup
strategy:
matrix:
variant: ${{ fromJson(needs.setup.outputs.matrix) }}
fail-fast: false
steps:
- name: Display variant information
run: |
echo "Testing TEMPLATE: ${{ matrix.variant.TEMPLATE }}"
echo "Testing VARIANT: ${{ matrix.variant.VARIANT }}"
# - name: Run test for ${{ matrix.variant.TEMPLATE }}
# env:
# VARIANT: ${{ matrix.variant.VARIANT }}
# run: test/${{ matrix.variant.TEMPLATE }}/test.sh
# - name: Run test for ${{ matrix.template }}
# env:
# VARIANT: ${{ matrix.variant }}
# run: test/${{ matrix.template }}/test.sh
# - name: Checkout
# uses: actions/checkout@v4
# - name: Setup Node
# uses: actions/setup-node@v4
# with:
# node-version: 22
# cache: npm
# - name: Install dependencies
# run: npm ci
# - name: Run test for ${{ matrix.template }}
# env:
# VARIANT: ${{ matrix.variant }}
# run: test/${{ matrix.template }}/test.sh
# build:
# name: Build devcontainer images
# runs-on: ubuntu-latest
# needs:
# - setup
# - test
# strategy:
# matrix:
# template: ${{ fromJson(needs.setup.outputs.template_dirs) }}
# variant: [
# "22-bookworm",
# "22-bullseye",
# "20-bookworm",
# "20-bullseye",
# "18-bookworm",
# "18-bullseye"
# ]
# fail-fast: false
# steps:
# - name: Checkout
# uses: actions/checkout@v4
# - name: Install devcontainer cli
# run: npm install -g @devcontainers/cli
# - name: Build image ${{ matrix.template }}/${{ matrix.variant }}
# env:
# TEMPLATE: ${{ matrix.template }}
# VARIANT: ${{ matrix.variant }}
# run: scripts/build.sh
# # - name: Build devcontainer
# # run: |
# # echo "starting devcontainer build..."
# # devcontainer build \
# # --workspace-folder tmp/src/${{ matrix.template }}/${{ matrix.variant }}/ \
# # --image-name ghcr.io/The-Nefarious-Developer/${{ matrix.template }}:${{ matrix.variant }} \
# # # --no-cache true