-
-
Notifications
You must be signed in to change notification settings - Fork 444
61 lines (57 loc) · 1.85 KB
/
tests.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
name: Run tests
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
fail-fast: false
steps:
- name: run on mac
if: matrix.os == 'macos-latest'
run: sudo xcode-select -s /Library/Developer/CommandLineTools
- name: Setup DBUS environment
if: matrix.os == 'ubuntu-latest'
run: |
export DISPLAY=:0
sudo apt install dbus-x11
machineId=$(cat /var/lib/dbus/machine-id)
mkdir -p /home/runner/.dbus
mkdir -p /home/runner/.dbus/session-bus/
touch /home/runner/.dbus/session-bus/${machineId}-0
sudo dbus-launch --exit-with-session
sleep 5 # Wait for the DBUS session to start
echo $DBUS_SESSION_BUS_ADDRESS
eval `dbus-launch --sh-syntax`
address=$(echo $DBUS_SESSION_BUS_ADDRESS)
echo "DBUS_SESSION_BUS_ADDRESS=${address}" > /home/runner/.dbus/session-bus/${machineId}-0
- name: Check for file
if: matrix.os == 'ubuntu-latest'
run: cat /home/runner/.dbus/session-bus/$(cat /var/lib/dbus/machine-id)-0
- name: Set Timezone
uses: szenius/set-timezone@v1.1
with:
timezoneLinux: Europe/Amsterdam
timezoneMacos: Europe/Amsterdam
timezoneWindows: W. Europe Standard Time
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '20.18.0'
- run: pip install setuptools
- run: npm install npm -g
- run: npm install
- name: Install missing usocket
if: matrix.os == 'ubuntu-latest'
run: npm install usocket
- run: npm run coverage
env:
CI: true
DISPLAY: ':0'
- name: Codecov
uses: codecov/codecov-action@v3