5523bffbf2
- Mostly CC0 because they're not interesting - formatting, git, travis, transifex - Some BSD-2-Clause because of habit - CMake and shell-script-like files
24 lines
372 B
YAML
24 lines
372 B
YAML
# SPDX-FileCopyrightText: no
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
#
|
|
language: cpp
|
|
|
|
python:
|
|
- 3.5
|
|
|
|
sudo: required
|
|
|
|
services:
|
|
- docker
|
|
|
|
notifications:
|
|
irc:
|
|
- "chat.freenode.net#calamares"
|
|
|
|
install:
|
|
- docker build -t calamares .
|
|
|
|
script:
|
|
- docker run -v $PWD:/src --tmpfs /build:rw,size=81920k -e SRCDIR=/src -e BUILDDIR=/build calamares "/src/ci/travis.sh"
|
|
|