-
Notifications
You must be signed in to change notification settings - Fork 29
75 lines (73 loc) · 2.53 KB
/
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
name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: "43 7 * * 0"
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
test-default-features:
runs-on: ubuntu-latest
strategy:
matrix:
icu_version: [63, 73, 74]
steps:
- uses: actions/checkout@v2
- name: 'Test ICU version ${{ matrix.icu_version }}'
run: 'make DOCKER_TEST_ENV=rust_icu_testenv-${{ matrix.icu_version}} docker-test'
test-with-features:
runs-on: ubuntu-latest
strategy:
matrix:
icu_version: [72, 73, 74]
feature_set:
- "renaming,icu_version_in_env,icu_version_64_plus,icu_version_67_plus,icu_version_68_plus"
- "renaming,icu_version_64_plus,icu_version_67_plus,icu_version_68_plus,icu_config,use-bindgen"
steps:
- uses: actions/checkout@v2
- name: 'Test ICU version ${{ matrix.icu_version }}'
run: 'make DOCKER_TEST_ENV=rust_icu_testenv-${{ matrix.icu_version }} RUST_ICU_MAJOR_VERSION_NUMBER=${{ matrix.icu_version }} DOCKER_TEST_CARGO_TEST_ARGS="--no-default-features --features ${{ matrix.feature_set }}" docker-test'
test-nondefault-features:
runs-on: ubuntu-latest
strategy:
matrix:
icu_version: [63]
feature_set:
- "renaming,icu_version_in_env,icu_version_69_max"
steps:
- uses: actions/checkout@v2
- name: 'Test ICU version ${{ matrix.icu_version }}'
run: 'make DOCKER_TEST_ENV=rust_icu_testenv-${{ matrix.icu_version }} RUST_ICU_MAJOR_VERSION_NUMBER=${{ matrix.icu_version }} DOCKER_TEST_CARGO_TEST_ARGS="--no-default-features --features ${{ matrix.feature_set }}" docker-test'
test-bindgen:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: 'Test static-bindgen'
run: 'make static-bindgen'
test-static-linking:
runs-on: ${{ matrix.runs-on }}
strategy:
matrix:
# TODO: #301: re-enable.
# runs-on: [ubuntu-latest, macos-latest]
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- if: matrix.runs-on == 'macos-latest'
run: make macos-test
- if: matrix.runs-on == 'ubuntu-latest'
run: make test
test-main-branch:
runs-on: ubuntu-latest
strategy:
matrix:
icu_version: [74]
steps:
- uses: actions/checkout@v2
- name: 'Test ICU `main`'
run: |
make DOCKER_TEST_ENV=rust_icu_testenv-current RUST_ICU_MAJOR_VERSION_NUMBER=${{matrix.icu_version}} docker-test-current