summaryrefslogtreecommitdiffstats
path: root/.github/workflows
Commit message (Collapse)AuthorAgeFilesLines
* ci: Set GitHub org to `gitblit` for release.r1.9.0Florian Zschocke2020-02-011-1/+1
|
* Only run the release workflow in my repo fzs/gitblitFlorian Zschocke2020-02-011-0/+1
|
* ci: Remove incorrect changes from the Maven artifacts.json fileFlorian Zschocke2020-02-011-1/+3
| | | | | | | | | | | | Moxie's deploy task updates the `artifacts.json` file in the Maven repository. But it does rewrite the whole file, not just add the newly deployed artifacts. Which causes the "last updated" dates for all artifacts in the repository to be rewritten. In our case, where the repository is a Git repo, if the Git repo is a fresh checkout, that resets all the dates to the checkout date. Therefore we adjust the `artifacts.json` file to only keep the update for the newly deployed artifacts, removing the other updates for the dates with some awk magic.
* Add workflow to run a release against gitblit/gitblitFlorian Zschocke2020-01-311-0/+194
|
* ci: Ignore all branches starting with `release`.Florian Zschocke2020-01-311-2/+1
| | | | Set the ignored branches pattern to `release*` for the normal ci workflow.
* Run build and tests on Java 7.Florian Zschocke2020-01-111-1/+1
|
* ci: Ignore release and gh-pages branches for CI build on pushFlorian Zschocke2020-01-111-1/+6
|
* ci: Add build with Java 7 on LinuxFlorian Zschocke2020-01-101-0/+29
| | | | | | | Add a job to run a build with Java 7. The job currently only runs on Linux. In order to run on Java 7, an old Ant version is downloaded and installed. We use moxie+ant for this, so we build with moxie.
* Build on matrix of latest Ubunutu and latest Windows.Florian Zschocke2020-01-051-1/+2
| | | | | Currently that is Ubuntu 18.04 and Windows Server 2019. https://help.github.com/en/actions/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners
* Build as matrix of Java 8 and 11, only.Florian Zschocke2020-01-051-1/+1
| | | | | We cannot build with Ant on GitHub since the provided Ant version does not run on Java 7.
* Build with matrix of Java 7, 8 and 11.Florian Zschocke2020-01-051-5/+10
|
* Add ci workflow to build on every push.Florian Zschocke2020-01-051-0/+25