ci: Integrate Github Actions

Integrates Github Actions which is much much faster than AppVeyor in all areas, and even supports multiple workflows instead of forcing everything into just one workflow like AppVeyor does. Plus we get 20 parallel builds that nearly instantly finish, which results in much faster feedback without having to run our own Jenkins CI.

The builder and packager scripts have been adjusted to add support for both Windows and Linux, and both AppVeyor and Github Actions. Additionally to that, the builder script now correctly executes x32 and x64 steps in a chain, instead of waiting for the other architecture to finish first. This further reduces build times.
This commit was merged in pull request #2.
This commit is contained in:
Michael Fabian 'Xaymar' Dirks
2019-09-04 00:24:12 +02:00
committed by Michael Fabian Dirks
parent 5c8939b4a8
commit 11f72c9bc7
5 changed files with 177 additions and 89 deletions
-1
View File
@@ -18,7 +18,6 @@ class Runner {
run() {
let self = this;
return new Promise(function(resolve, reject) {
console.log(self.cmd, self.args);
self.proc = cp.spawn(
self.cmd, self.args, {
windowsVerbatimArguments: true,