Skip to content

Add Continuous Integration #56

@Baklap4

Description

@Baklap4

Do you want to request a feature or report a bug?

Feature

What did you expect to see?

Currently there's no Continuous integration. In other words this means we have to run the unit tests ourselves, check style coding etc, check if it builds. I bet we don't want that. We'd love to see this repetitive stuff to be automated as much as possible. Here comes CI around the corner.

Expectations

The CI should be able to do:

  • Be triggered upon a push (commit or tags)
  • Restore dependency packages
    • Run the command dotnet restore --packages SOME/LOCATION in the same folder as where the sln file is.
  • Cache the dependencies so our buildtime will decrease
    • Run the previous command with the cached packages when the pipeline builds a second time.
  • Build the project
    • Windows
    • Linux
    • OSx
  • Run tests
    • Windows
    • Linux
    • OSx
  • Once every night run a nightly build.

If the CI meets these expectations AND the push is a tag/release CD will pop up to release a new version. see #57

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions