-
Notifications
You must be signed in to change notification settings - Fork 32
111 lines (98 loc) · 3.83 KB
/
Copy pathnightly.yml
File metadata and controls
111 lines (98 loc) · 3.83 KB
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
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
---
name: Nightly Tests
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
jobs:
build-test-package:
name: "Build, Test, and Package (OS: ${{ matrix.os }}, Node: ${{ matrix.node }}, Java: ${{ matrix.java_version }}, VS Code: ${{ matrix.vscode }})"
strategy:
max-parallel: 15
matrix:
os:
[
macos-15,
ubuntu-22.04,
windows-2022,
macos-latest,
ubuntu-latest,
windows-latest,
]
node: ["20.18.3", "22.14.0"]
vscode: ["1.90.0", "stable", "insiders"] # v1.90.0 is the first version of VSCode to use Node 18
java_distribution: [temurin]
java_version: [8, 11, 17, 21]
exclude:
# only use macos-latest for testing in nightly
- os: macos-15
# java 8 not available on newer/latest macos
- os: macos-latest
java_version: 8
## Reduce number of macos runs by only testing latest node, java and vscode versions on macos-latest.
## NOTE: Usually if something works on ubuntu it works on macos.
- os: macos-latest
java_version: 11
- os: macos-latest
java_version: 17
- os: macos-latest
node: "20.19.4"
- os: macos-latest
vscode: "1.90.0"
- os: macos-latest
vscode: "insiders"
fail-fast: false # don't immediately fail all other jobs if a single job fails
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
env:
DAFFODIL_TEST_VSCODE_VERSION: ${{ matrix.vscode }}
steps:
############################################################
# Setup
############################################################
- name: Check out Repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup Java
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
with:
distribution: ${{ matrix.java_distribution }}
java-version: ${{ matrix.java_version }}
- name: Install Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: ${{ matrix.node }}
# some runner oses don't have sbt by default
- name: Setup sbt
uses: sbt/setup-sbt@3afe9cf056c5d139bfc46579af1192d77a2f0821 # v1
############################################################
# Build & Package
############################################################
- name: Install node dependencies
run: yarn install --frozen-lockfile
- name: Runs tests - Linux
run: xvfb-run -a yarn test
if: runner.os == 'Linux'
- name: Runs tests - Windows/Mac
run: yarn test
if: runner.os != 'Linux'
- name: Check for Errors in macOS
run: tail -n 1000 '/Users/runner/Library/Application Support/omega_edit/'* && exit 1
if: failure() && runner.os == 'macOS'
- name: Package
run: yarn package