Skip to content

Poor man's Windows Continuous Deployment complement to already established Continuous Integration system

License

Notifications You must be signed in to change notification settings

OlegBoulanov/s3i

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

s3i - MSI Package Batch Installer

This is a simple learning project I created to become familiar with .NET Core 3.0, and Windows/Linux project and binary portability.

Also, it gives an example of using certain features like continuous integrations with AppVeyor, and continuous deployment to Windows computers from GitHub Releases - all completely free for open source projects! For private projects, a secure storage, like AWS S3 can be used for storing configuration and/or software installers.

Functionality

s3i is a small Windows command line utility and service for managing Windows Installer packages products (in *.msi files) on groups of computers. Each managed host has s3i installed and configured for polling of group-specific configuration file. Changes of this file eventually (on installed software request) result in products being installed, reconfigured, upgraded, downgraded or uninstalled - on all computers in the same group. Configuration files specify product installation source and set of property values to apply at installation. Both configuration files and installation sources can be served locally (or from UNC), from public Web site (like GitHub Releases), or from AWS S3 bucket.

In essence, s3i is a simple Continuous Deployment complement for already established Continuous Integration system (this project itself is an example of such)

Deployment with s3i

Detailed desription can be found in wiki

Build Status

master develop release
Build status Build status Build status

Installation Prerequisites

Installation

Latest version of s3i.msi can be installed from Releases page

Project maintenance

Integration with Github and AppVeyor: token change

  • git config --global credential.helper store
  • git clone https://OlegBoulanov:github-token-for-appveyor@github.com/OlegBoulanov/s3i

Making release