-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (38 loc) · 1.27 KB
/
e2e-test-bootstrap-apply.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
name: "E2E tests: Bootstrap / apply"
on: push
defaults:
run:
shell: bash
jobs:
bootstrap-apply:
strategy:
fail-fast: true
matrix:
os: [macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Bootstrap Akinizer from script
run: curl -o- https://raw.githubusercontent.com/robatron/akinizer/$GITHUB_SHA/bootstrap.sh | AK_GIT_REF=$GITHUB_SHA bash
- name: Apply Akinizer configs
run: |
cd $HOME/opt/akinizer/examples
gulp
- name: Re-bootstrap non-destructively
run: curl -o- https://raw.githubusercontent.com/robatron/akinizer/$GITHUB_SHA/bootstrap.sh | AK_GIT_REF=$GITHUB_SHA bash
- name: Re-apply non-destructively
run: |
cd $HOME/opt/akinizer/examples
gulp
bootstrap-apply-alt-install-dir:
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Bootstrap Akinizer from script
run: curl -o- https://raw.githubusercontent.com/robatron/akinizer/$GITHUB_SHA/bootstrap.sh | AK_GIT_REF=$GITHUB_SHA AK_INSTALL_ROOT=$HOME/custom/install/dir bash
- name: Apply Akinizer configs
run: |
cd $HOME/custom/install/dir/examples
gulp