Skip to content

Commit

Permalink
build: move to github-hosted runners
Browse files Browse the repository at this point in the history
  • Loading branch information
lklimek committed Nov 13, 2024
1 parent 650103f commit 58ac034
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 9 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/tests-build-js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ on:
jobs:
build-js:
name: Build JS
runs-on: ["self-hosted", "linux", "arm64", "ubuntu-platform"]
# runs-on: ["self-hosted", "linux", "arm64", "ubuntu-platform"]
runs-on: ubuntu-24.04
steps:
- name: Configure AWS credentials and bucket region
uses: aws-actions/configure-aws-credentials@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests-dashmate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ jobs:
dashmate-test:
name: Run ${{ inputs.name }} tests
# TODO: Try with Github Runner, probably it will be the same time
runs-on: [ "self-hosted", "linux", "arm64", "ubuntu-platform" ]
# runs-on: [ "self-hosted", "linux", "arm64", "ubuntu-platform" ]
runs-on: ubuntu-24.04
timeout-minutes: 15
steps:
- name: Check out repo
Expand Down Expand Up @@ -118,4 +119,3 @@ jobs:
- name: Show Docker logs
if: ${{ failure() }}
uses: jwalton/gh-docker-logs@v2

3 changes: 2 additions & 1 deletion .github/workflows/tests-packges-functional.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ on:
jobs:
test-functional:
name: Run functional tests
runs-on: [ "self-hosted", "linux", "arm64", "ubuntu-platform" ]
# runs-on: [ "self-hosted", "linux", "arm64", "ubuntu-platform" ]
runs-on: ubuntu-24.04
timeout-minutes: 15
env:
CHROME_BIN: /usr/bin/brave-browser
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/tests-rs-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@ on:
test-runner:
description: Runner for tests. Must be JSON valid string.
type: string
default: '[ "self-hosted", "linux", "arm64", "ubuntu-platform" ]'
# default: '[ "self-hosted", "linux", "arm64", "ubuntu-platform" ]'
default: '[ "ubuntu-24.04" ]'
lint-runner:
description: Runner for linting. Must be JSON valid string.
type: string
default: '"ubuntu-24.04"'
default: '[ "ubuntu-24.04" ]'
check-each-feature:
description: If true, try to build each individual feature for this crate
type: boolean
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/tests-test-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ on:
jobs:
test-suite:
name: Run ${{ inputs.name }}
runs-on: [ "self-hosted", "linux", "arm64", "ubuntu-platform" ]
# runs-on: [ "self-hosted", "linux", "arm64", "ubuntu-platform" ]
runs-on: ubuntu-24.04
timeout-minutes: 15
env:
CHROME_BIN: /usr/bin/brave-browser
Expand Down Expand Up @@ -57,8 +58,8 @@ jobs:
- name: Run test suite
run: yarn workspace @dashevo/platform-test-suite ${{ inputs.command }}
env:
BROWSER_TEST_BATCH_INDEX: ${{ inputs.batch_index }}
BROWSER_TEST_BATCH_TOTAL: ${{ inputs.batch_total }}
BROWSER_TEST_BATCH_INDEX: ${{ inputs.batch_index }}
BROWSER_TEST_BATCH_TOTAL: ${{ inputs.batch_total }}

- name: Show Docker logs
if: ${{ failure() }}
Expand Down

0 comments on commit 58ac034

Please sign in to comment.