blob: 81057c968e45bcc6a578843f1832fd89694e7cfa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
version: 2
jobs:
build:
working_directory: ~/swift
docker:
- image: tfar/swift-gcc:latest
steps:
- checkout
- run:
name: Version information
command: |
lsb_release -a
qmake --version
- run:
name: Check basic source code style
command: coala --non-interactive
- run:
name: Build and run unit tests
# Disable QtUtilitiesTest.testDSTawareness test because it fails on this system.
command: |
export GTEST_FILTER=-QtUtilitiesTest.testDSTawareness
./scons test=unit max_jobs=0 allow_warnings=0 -j 2
|