Release Workflow
This commit is contained in:
1
.github.bak/FUNDING.yml
Normal file
1
.github.bak/FUNDING.yml
Normal file
@@ -0,0 +1 @@
|
||||
github: GothenburgBitFactory
|
||||
12
.github.bak/issue_template.md
Normal file
12
.github.bak/issue_template.md
Normal file
@@ -0,0 +1,12 @@
|
||||
#### To report a bug...
|
||||
|
||||
* What command(s) did you run?
|
||||
* What did you expect to happen?
|
||||
* What actually happened?
|
||||
* Paste the output of the ```task diag``` command.
|
||||
|
||||
#### To request a feature...
|
||||
|
||||
* Clearly describe the feature.
|
||||
* Clearly state the use case. We are only interested in use cases, do not waste time with implementation details or suggested syntax.
|
||||
* Please see our notes on [How to request a feature](https://taskwarrior.org/docs/features.html)
|
||||
9
.github.bak/pull_request_template.md
Normal file
9
.github.bak/pull_request_template.md
Normal file
@@ -0,0 +1,9 @@
|
||||
#### Description
|
||||
|
||||
Replace this text with a description of the PR.
|
||||
|
||||
#### Additional information...
|
||||
|
||||
- [ ] Have you run the test suite?
|
||||
Many changes need to be tested. Please run the test suite
|
||||
and include the output of ```cd test && ./problems```.
|
||||
64
.github.bak/workflows/tests.yaml
Normal file
64
.github.bak/workflows/tests.yaml
Normal file
@@ -0,0 +1,64 @@
|
||||
name: tests
|
||||
on: [push, pull_request]
|
||||
jobs:
|
||||
tests:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
include:
|
||||
- name: "Centos 8"
|
||||
runner: ubuntu-latest
|
||||
dockerfile: centos8
|
||||
- name: "Fedora 32"
|
||||
runner: ubuntu-latest
|
||||
dockerfile: fedora32
|
||||
- name: "Fedora 33"
|
||||
runner: ubuntu-latest
|
||||
dockerfile: fedora33
|
||||
- name: "Fedora 34"
|
||||
runner: ubuntu-latest
|
||||
dockerfile: fedora34
|
||||
- name: "Fedora 35"
|
||||
runner: ubuntu-latest
|
||||
dockerfile: fedora35
|
||||
- name: "Debian Testing"
|
||||
runner: ubuntu-latest
|
||||
dockerfile: debiantesting
|
||||
- name: "Ubuntu 18.04"
|
||||
runner: ubuntu-latest
|
||||
dockerfile: ubuntu1804
|
||||
- name: "Ubuntu 20.04"
|
||||
runner: ubuntu-latest
|
||||
dockerfile: ubuntu2004
|
||||
- name: "Ubuntu 21.04"
|
||||
runner: ubuntu-latest
|
||||
dockerfile: ubuntu2104
|
||||
- name: "Ubuntu 21.10"
|
||||
runner: ubuntu-latest
|
||||
dockerfile: ubuntu2110
|
||||
- name: "OpenSUSE 15"
|
||||
runner: ubuntu-latest
|
||||
dockerfile: opensuse15
|
||||
- name: "Archlinux Base (Rolling)"
|
||||
runner: ubuntu-latest
|
||||
dockerfile: arch
|
||||
- name: "Mac OS X 10.13"
|
||||
runner: macos-latest
|
||||
dockerfile: osx
|
||||
runs-on: ${{ matrix.runner }}
|
||||
continue-on-error: ${{ matrix.continue-on-error == true }}
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Build ${{ matrix.name }}
|
||||
env:
|
||||
DOCKER_REGISTRY: docker.pkg.github.com
|
||||
DOCKER_CACHE_IMAGE: docker.pkg.github.com/${{ github.repository }}/taskwarrior_cache
|
||||
GITHUB_USER: ${{ github.actor }}
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
CONTAINER: ${{ matrix.dockerfile }}
|
||||
run: if [[ $CONTAINER != "osx" ]]; then docker-compose build test-$CONTAINER ; fi
|
||||
- name: Test ${{ matrix.name }}
|
||||
run: if [[ $CONTAINER != "osx" ]]; then docker-compose run test-$CONTAINER; else bash test/scripts/test_osx.sh ; fi
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
CONTAINER: ${{ matrix.dockerfile }}
|
||||
Reference in New Issue
Block a user