Skip to content

Commit

Permalink
Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Zoltan Csizmadia authored and Zoltan Csizmadia committed Feb 2, 2024
1 parent 64bb05b commit f41e288
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 10 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/test-lang-js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,14 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, ["self-hosted", "asf-arm"]]
os: [ubuntu-latest]
node:
- 12
- 14
- 16
include:
- os: ["self-hosted", "asf-arm"]
node: 18
steps:
- uses: actions/checkout@v4
- name: Setup Node
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/test-lang-perl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,12 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, ["self-hosted", "asf-arm"]]
perl:
- '5.32'
include:
- os: ubuntu-latest
perl: '5.32'
- os: ["self-hosted", "asf-arm"]
perl: '5.30'

steps:
- uses: actions/checkout@v4

Expand Down
11 changes: 7 additions & 4 deletions .github/workflows/test-lang-php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,14 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, ["self-hosted", "asf-arm"]]
os: [ubuntu-latest]
php:
- '7.3'
- '7.4'
- '8.0'
- '7.3'
- '7.4'
- '8.0'
include:
- os: ["self-hosted", "asf-arm"]
php: '7.4'

steps:
- uses: actions/checkout@v4
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/test-lang-py.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, ["self-hosted", "asf-arm"]]
os: [ubuntu-latest]
python:
- '3.11'
- '3.10'
Expand All @@ -49,6 +49,9 @@ jobs:
- 'pypy-3.8'
- 'pypy-3.9'
- 'pypy-3.10'
include:
- os: ["self-hosted", "asf-arm"]
python: '3.8'

steps:
- uses: actions/checkout@v4
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/test-lang-ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,16 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, ["self-hosted", "asf-arm"]]
os: [ubuntu-latest]
ruby:
- '2.7'
- '3.0'
- '3.1'
- '3.2'
- '3.3'
include:
- os: ["self-hosted", "asf-arm"]
ruby: '2.7'
steps:
- uses: actions/checkout@v4

Expand Down

0 comments on commit f41e288

Please sign in to comment.