[med-svn] [Git][med-team/runcircos-gui][upstream] New upstream version 0.0+git20200528.82dda8c
Steffen Möller
gitlab at salsa.debian.org
Mon Jul 13 23:08:57 BST 2020
Steffen Möller pushed to branch upstream at Debian Med / runcircos-gui
Commits:
b9b95fa5 by Steffen Moeller at 2020-07-13T23:59:02+02:00
New upstream version 0.0+git20200528.82dda8c
- - - - -
3 changed files:
- + .github/workflow_testing.yml
- + .github/workflows/main.yml
- README.md
Changes:
=====================================
.github/workflow_testing.yml
=====================================
@@ -0,0 +1,36 @@
+name: Test Installing Qt
+
+on: [push, pull_request]
+
+jobs:
+ test:
+ runs-on: ${{ matrix.os }}
+ strategy:
+ matrix:
+ os: [windows-latest, macOS-latest, ubuntu-latest]
+
+ steps:
+ - uses: actions/checkout at v2
+ - name: Cache Qt
+ id: cache-qt
+ uses: actions/cache at v1
+ with:
+ path: ../Qt
+ key: ${{ runner.os }}-QtCache
+
+ - name: Install Qt
+ uses: jurplel/install-qt-action at v2
+ with:
+ cached: ${{ steps.cache-qt.outputs.cache-hit }}
+
+ - name: Configure test project on windows
+ if: startsWith(matrix.os, 'windows')
+ run: |
+ cd tests/TestWithModules
+ call "%programfiles(x86)%\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
+ dir %Qt5_DIR%/bin/qmake
+ qmake
+ shell: cmd
+ - name: TestBuild
+ run: make
+ shell: cmd
=====================================
.github/workflows/main.yml
=====================================
@@ -0,0 +1,31 @@
+name: Test Build
+
+on: [push, pull_request]
+
+jobs:
+ test:
+ runs-on: ${{ matrix.os }}
+ strategy:
+ matrix:
+ os: [windows-latest, macOS-latest, ubuntu-latest]
+
+ steps:
+ - name: Install Qt
+ uses: jurplel/install-qt-action at v2
+
+ - name: clone repository
+ uses: actions/checkout at v2
+
+ - name: Configure test project on windows
+ if: startsWith(matrix.os, 'windows')
+ run:
+ cd src
+ qmake
+ make
+
+ - name: Configure test project on unix
+ if: (!startsWith(matrix.os, 'windows'))
+ run: |
+ cd src
+ qmake
+ make
=====================================
README.md
=====================================
@@ -1,4 +1,5 @@
# runcircos-gui
+
[![Build Status](https://travis-ci.org/narunlifescience/runcircos-gui.svg?branch=master)](https://travis-ci.org/narunlifescience/runcircos-gui) [![Build status](https://ci.appveyor.com/api/projects/status/jq6q44uggvokxmgt?svg=true)](https://ci.appveyor.com/project/narunlifescience/runcircos-gui)
runCircos-gui is a simple yet comprehensive crossplatform software developed in QT(C++) to execute Circos http://circos.ca/ from a graphical user interface. The software eliminates the need to use command line for running Circos without compromising the power of complete commandline parameters and options.
View it on GitLab: https://salsa.debian.org/med-team/runcircos-gui/-/commit/b9b95fa5f65a1726fc7e5aae3ef3197538b9c404
--
View it on GitLab: https://salsa.debian.org/med-team/runcircos-gui/-/commit/b9b95fa5f65a1726fc7e5aae3ef3197538b9c404
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/debian-med-commit/attachments/20200713/7ad4abaf/attachment-0001.html>
More information about the debian-med-commit
mailing list