-
Notifications
You must be signed in to change notification settings - Fork 588
80 lines (72 loc) · 2.07 KB
/
ci.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
name: ci
on:
pull_request:
types:
- opened
- ready_for_review
- reopened
- synchronize
branches:
- 'master'
- 'develop/**'
paths:
- '**/syntax_test_*'
- '**/*.hidden-tmLanguage'
- '**/*.sublime-syntax'
- '**/*.tmLanguage'
- '**/*.tmPreferences'
- '.github/workflows/ci.yml'
push:
branches:
- 'master'
- 'develop/**'
tags-ignore:
- '*'
paths:
- '**/syntax_test_*'
- '**/*.hidden-tmLanguage'
- '**/*.sublime-syntax'
- '**/*.tmLanguage'
- '**/*.tmPreferences'
- '.github/workflows/ci.yml'
workflow_dispatch:
jobs:
run_syntax_tests:
name: Test on ${{ matrix.sublime-channel }} build
runs-on: ubuntu-latest
timeout-minutes: 15 # default is 6 hours!
continue-on-error: ${{ matrix.optional }}
strategy:
max-parallel: 2
fail-fast: false
matrix:
include:
# latest stable build
# https://www.sublimetext.com/download
# - sublime-channel: stable
# sublime-build: 4169
# optional: true
# latest dev build
# https://www.sublimetext.com/dev
- sublime-channel: dev
sublime-build: latest
optional: false
steps:
# https://github.com/actions/checkout
- name: Checkout Packages
uses: actions/checkout@v4
with:
path: st_syntax_tests/Data/Packages
- name: Get binary for ${{ matrix.sublime-channel }} build ${{ matrix.sublime-build }}
run: |
if [[ "${{ matrix.sublime-build }}" == "latest" ]]; then
wget -O st_syntax_tests.tar.xz https://download.sublimetext.com/latest/dev/linux/x64/syntax_tests
else
wget -O st_syntax_tests.tar.xz https://download.sublimetext.com/st_syntax_tests_build_${{ matrix.sublime-build }}_x64.tar.xz
fi
tar xf st_syntax_tests.tar.xz
rm st_syntax_tests.tar.xz
- name: Run syntax tests
run: |
cd st_syntax_tests
./syntax_tests