Skip to content

Commit

Permalink
Move actions to public runners
Browse files Browse the repository at this point in the history
  • Loading branch information
bautisflow committed Jun 22, 2024
1 parent 0f3cf70 commit 957acf6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ env:
jobs:

build_version:
#runs-on: ubuntu-latest
runs-on: [self-hosted, Linux, X64]
runs-on: ubuntu-latest

outputs:
version: ${{ steps.version.outputs.version }}
Expand All @@ -34,8 +33,7 @@ jobs:
fi
build:
#runs-on: ubuntu-latest
runs-on: [self-hosted, Linux, X64]
runs-on: ubuntu-latest
needs: build_version
strategy:
fail-fast: false # continues with matrix even if an element fails
Expand Down Expand Up @@ -72,8 +70,7 @@ jobs:

upload_to_release: # when tag is created
if: ${{ github.event_name == 'release' }}
#runs-on: ubuntu-latest
runs-on: [self-hosted, Linux, X64]
runs-on: ubuntu-latest
needs: [build_version, build]
strategy:
fail-fast: false # continues with matrix even if an element fails
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
release:
runs-on: [self-hosted, Linux, X64]
runs-on: ubuntu-latest

steps:

Expand Down
1 change: 0 additions & 1 deletion .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ jobs:
build:
name: Build
runs-on: ubuntu-22.04
#runs-on: [self-hosted, Linux, X64]
env:
BUILD_WRAPPER_OUT_DIR: build_wrapper_output_directory # Directory where build-wrapper output will be placed
steps:
Expand Down

0 comments on commit 957acf6

Please sign in to comment.