forked from JetBrains/intellij-sdk-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
102 lines (98 loc) · 3.04 KB
/
build-test.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
name: Build, Test, Mirror
on: [push, pull_request]
jobs:
docs:
name: Docs
runs-on: ubuntu-latest
container:
image: ruby:2.6
steps:
- name: Fetch Sources
uses: actions/checkout@v2
- name: Setup Cache
uses: actions/cache@v1
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
- name: Install Dependencies
run: |
git submodule update --init --remote
gem install bundler:2.0.1
bundle install
- name: Build
run: |
dpkg-reconfigure --frontend=noninteractive locales && update-locale LANG=C.UTF-8
export LC_ALL=C.UTF-8
export LANG=en_US.UTF-8
export LANGUAGE=en_US.UTF-8
rake build
gradleValidation:
name: Gradle Wrappers
runs-on: ubuntu-latest
steps:
- name: Fetch Sources
uses: actions/checkout@v2
- name: Gradle Wrapper Validation
uses: gradle/wrapper-validation-action@v1
samples:
name: Code Samples / ${{ matrix.plugin }}
needs: gradleValidation
runs-on: ubuntu-latest
strategy:
matrix:
plugin:
- action_basics
- comparing_references_inspection
- conditional_operator_intention
- editor_basics
- facet_basics
- framework_basics
- inspection_basics
- kotlin_demo
- live_templates
- max_opened_projects
- module
- product_specific/pycharm_basics
- project_model
- project_view_pane
- project_wizard
- psi_demo
- run_configuration
- simple_language_plugin
- tool_window
- tree_structure_provider
container:
image: gradle:jdk8
steps:
- name: Fetch Sources
uses: actions/checkout@v2
- name: Setup Cache
uses: actions/cache@v1
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Verify Plugin
run: gradle -p code_samples/${{ matrix.plugin }} verifyPlugin
- name: Test Plugin
run: gradle -p code_samples/${{ matrix.plugin }} test
mirror:
name: Code Samples Mirror
if: github.ref == 'refs/heads/master' && github.repository == 'JetBrains/intellij-sdk-docs'
needs: samples
runs-on: ubuntu-latest
steps:
- name: Install SSH key
uses: shimataro/ssh-key-action@v2
with:
key: ${{ secrets.SSH_KEY }}
known_hosts: ${{ secrets.KNOWN_HOSTS }}
- name: Prepare Mirror
run: |
git clone --bare [email protected]:JetBrains/intellij-sdk-docs.git .
git branch | grep -v "master" | xargs git branch -D
git filter-branch --prune-empty --subdirectory-filter code_samples master
git push --mirror [email protected]:JetBrains/intellij-sdk-code-samples.git