From 34bcd6b1c9b613f27bb0fdce5df3368a2ebebdeb Mon Sep 17 00:00:00 2001 From: Norbert Hartl Date: Thu, 14 Sep 2023 12:01:31 +0200 Subject: [PATCH 1/3] removed travis badge --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 214a0bd..aeda737 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,6 @@ SnapDump ======== -[![Build Status](https://travis-ci.com/zweidenker/SnapDump.svg?branch=master)](https://travis-ci.com/zweidenker/SnapDump) - SnapDump is a software for pharo to create and manage runtime snapshots. When developing software in pharo and an exception occurs we get a debugger window openend. This is not possible if the application is deployed in a server environment. Usually activity of a server is written in logfiles but logfiles are a very poor way of getting error feedback from your application. In pharo we can snapshot the state of the application when an exception occurs. This snapshot can be serialized using the fuel graph serializer and uploaded to a server. By uploading the snapshot to a server we can use SnapDump in a distributed scenario where multiple servers give feedback. Terminology From a97f948566e63536a45fac90920140fdf19e91e5 Mon Sep 17 00:00:00 2001 From: Norbert Hartl Date: Thu, 14 Sep 2023 12:09:15 +0200 Subject: [PATCH 2/3] switch to master branch --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bd88488..1a3dc5f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,7 +11,7 @@ on: push: branches: - - development + - master jobs: build: From 444dd927f265de62a8f3e3ec0bf7fe3643af9a8f Mon Sep 17 00:00:00 2001 From: Norbert Hartl Date: Thu, 14 Sep 2023 12:11:20 +0200 Subject: [PATCH 3/3] removed pharo12 as it is blocking. Needs to be done in a separate stroke --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1a3dc5f..e6a185a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - smalltalk: [ Pharo64-12, Pharo64-11, Pharo64-10 ] + smalltalk: [ Pharo64-11, Pharo64-10 ] name: ${{ matrix.smalltalk }} steps: - uses: actions/checkout@v2