From 6a579686c99edcfce400ea97af8dd6ece4836b88 Mon Sep 17 00:00:00 2001 From: Nathan Rijksen Date: Wed, 31 Jan 2024 09:28:05 -0800 Subject: [PATCH 1/3] Next version of remote installer will be 0.1.1 --- cmd/state-remote-installer/version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/state-remote-installer/version.txt b/cmd/state-remote-installer/version.txt index 6c6aa7cb09..17e51c385e 100644 --- a/cmd/state-remote-installer/version.txt +++ b/cmd/state-remote-installer/version.txt @@ -1 +1 @@ -0.1.0 \ No newline at end of file +0.1.1 From 6717d3520ddc43ba5232efeef8a473b0e80ac41f Mon Sep 17 00:00:00 2001 From: Nathan Rijksen Date: Wed, 31 Jan 2024 09:35:39 -0800 Subject: [PATCH 2/3] Don't need a runtime, just slows down CI to the point of failure --- activestate.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/activestate.yaml b/activestate.yaml index 24715ea780..cf5582331d 100644 --- a/activestate.yaml +++ b/activestate.yaml @@ -85,6 +85,7 @@ scripts: GOFLAGS="" go install github.com/josephspurrier/goversioninfo/cmd/goversioninfo@v1.4.0 fi - name: preprocess + standalone: true language: bash description: Generates assets required by the project that aren't just specific to the build value: | @@ -96,6 +97,7 @@ scripts: go run scripts/versioninfo-generator/main.go version.txt cmd/state-svc/versioninfo.json "State Service" fi - name: build + standalone: true language: bash description: Builds the project with the host OS as the target OS. value: | From fe91bc07bcce4b7876e8952694edec0e67bc2292 Mon Sep 17 00:00:00 2001 From: Nathan Rijksen Date: Wed, 31 Jan 2024 09:40:25 -0800 Subject: [PATCH 3/3] Stupid CI --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 375c7f4aa5..8014cbbd8b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -40,8 +40,8 @@ jobs: - # === Preprocess === name: Preprocess shell: bash - timeout-minutes: 1 - run: state run preprocess -v + timeout-minutes: 2 + run: VERBOSE=true state run preprocess -v - # === Build Remote Installer === name: Build Remote Installer