Skip to content

Commit

Permalink
gProfiler 1.2.22 & use self-hosted runner for heavy builds (#350)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jongy authored Apr 27, 2022
1 parent 89b5eab commit 134df9d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-container-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
build-docker:
runs-on: ubuntu-20.04
runs-on: self-hosted
steps:
- name: Checkout Code
uses: actions/checkout@v2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-executable-test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ jobs:

test-executable:
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
runs-on: ubuntu-20.04
needs: build-executable
strategy:
fail-fast: false
Expand All @@ -63,7 +64,6 @@ jobs:
- debian:8
- debian:9
- debian:10
runs-on: ubuntu-20.04
steps:
- name: Set up Python 3.8
uses: actions/setup-python@v2
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
build-executable-aarch64:
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-20.04
runs-on: self-hosted
steps:
- name: Checkout Code
uses: actions/checkout@v2
Expand Down Expand Up @@ -132,10 +132,10 @@ jobs:

deploy-executable:
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-20.04
needs:
- build-executable
- build-executable-aarch64
runs-on: ubuntu-20.04

steps:
- name: Download executables from the previous job
Expand Down
2 changes: 1 addition & 1 deletion gprofiler/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# Copyright (c) Granulate. All rights reserved.
# Licensed under the AGPL3 License. See LICENSE.md in the project root for license information.
#
__version__ = "1.2.21"
__version__ = "1.2.22"

0 comments on commit 134df9d

Please sign in to comment.