Skip to content

Commit 134df9d

Browse files
authored
gProfiler 1.2.22 & use self-hosted runner for heavy builds (#350)
1 parent 89b5eab commit 134df9d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/build-container-and-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
build-docker:
10-
runs-on: ubuntu-20.04
10+
runs-on: self-hosted
1111
steps:
1212
- name: Checkout Code
1313
uses: actions/checkout@v2

.github/workflows/build-executable-test-deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ jobs:
4141

4242
test-executable:
4343
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
44+
runs-on: ubuntu-20.04
4445
needs: build-executable
4546
strategy:
4647
fail-fast: false
@@ -63,7 +64,6 @@ jobs:
6364
- debian:8
6465
- debian:9
6566
- debian:10
66-
runs-on: ubuntu-20.04
6767
steps:
6868
- name: Set up Python 3.8
6969
uses: actions/setup-python@v2
@@ -102,7 +102,7 @@ jobs:
102102
103103
build-executable-aarch64:
104104
if: startsWith(github.ref, 'refs/tags/')
105-
runs-on: ubuntu-20.04
105+
runs-on: self-hosted
106106
steps:
107107
- name: Checkout Code
108108
uses: actions/checkout@v2
@@ -132,10 +132,10 @@ jobs:
132132

133133
deploy-executable:
134134
if: startsWith(github.ref, 'refs/tags/')
135+
runs-on: ubuntu-20.04
135136
needs:
136137
- build-executable
137138
- build-executable-aarch64
138-
runs-on: ubuntu-20.04
139139

140140
steps:
141141
- name: Download executables from the previous job

gprofiler/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# Copyright (c) Granulate. All rights reserved.
33
# Licensed under the AGPL3 License. See LICENSE.md in the project root for license information.
44
#
5-
__version__ = "1.2.21"
5+
__version__ = "1.2.22"

0 commit comments

Comments
 (0)