Compare commits

...

4 Commits

Author SHA1 Message Date
Stefan Schmidt c2e6e10637 fix path 2020-03-26 15:50:53 +01:00
Stefan Schmidt 2f2f3681ab bump to trigger ci 2020-03-26 15:49:40 +01:00
Stefan Schmidt 82637f83ee testing only, revert 2020-03-26 14:27:10 +01:00
Stefan Schmidt ecee4a3139 ci: circle: initial config file to test out setup 2020-03-26 14:25:04 +01:00
2 changed files with 41 additions and 11 deletions

35
.circleci/config.yml Normal file
View File

@ -0,0 +1,35 @@
version: 2.0
jobs:
"Fedora31-default":
docker:
- image: stefanschmidt1/ci-support-files:Fedora31
working_directory: /src
steps:
- checkout
- run: meson build -Decore-imf-loaders-disabler=scim,ibus -Dbindings=luajit,cxx,mono -Dmono-beta=true
- run: ninja -C build
- run: ninja -C build install
- run:
name: Run tests
command: ninja -C build test
"Fedora31-release-ready":
docker:
- image: stefanschmidt1/ci-support-files:Fedora31
working_directory: /src
steps:
- checkout
- run: meson build -Decore-imf-loaders-disabler=scim,ibus --buildtype=release
- run: ninja -C build
- run:
name: Run tests
command: ninja -C build dist
workflows:
version: 2
build:
jobs:
- "Fedora31-default"
- "Fedora31-release-ready"

View File

@ -47,15 +47,21 @@ env:
jobs:
include:
- os: osx
if: type = cron
- os: linux
if: type = cron
env: DISTRO=Fedora31-mingw CI_BUILD_TYPE=mingw
- os: linux
if: type = cron
env: DISTRO=Fedora31 CI_BUILD_TYPE=options-enabled
- os: linux
if: type = cron
env: DISTRO=Fedora31 CI_BUILD_TYPE=options-disabled
- os: linux
if: type = cron
env: DISTRO=Fedora31 CI_BUILD_TYPE=wayland
- os: linux
if: type = cron
env: DISTRO=Fedora31 CI_BUILD_TYPE=default
- os: linux
if: type = cron
@ -132,14 +138,3 @@ before_cache:
mv $HOME/Library/Caches/Homebrew $HOME/cachedir/Homebrew
fi
notifications:
irc:
channels:
- "chat.freenode.net#edevelop"
on_success: change
on_failure: always
template:
- "TravisCI build %{build_number} in branch %{branch}: %{result} - %{message} (%{elapsed_time})"
- "Commit: %{commit_subject} (%{commit}) from %{author}"
- "Change view : %{compare_url}"
- "Build details : %{build_url}"