Skip to content

Commit

Permalink
this works with act
Browse files Browse the repository at this point in the history
  • Loading branch information
christianrauch committed Dec 16, 2024
1 parent 38e4b79 commit 19bd371
Showing 1 changed file with 19 additions and 9 deletions.
28 changes: 19 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,21 @@ jobs:
fail-fast: false
matrix:
include:
- distribution: ubuntu
version: 22.04
ros: humble
# - distribution: ubuntu
# version: 22.04
# ros: humble

- distribution: ubuntu
version: 24.04
ros: jazzy
# - distribution: ubuntu
# version: 24.04
# ros: jazzy

- distribution: almalinux
version: 8
ros: humble

- distribution: almalinux
version: 9
ros: jazzy
# - distribution: almalinux
# version: 9
# ros: jazzy

continue-on-error: ${{ matrix.ros == 'rolling' }}

Expand All @@ -39,6 +39,16 @@ jobs:
PIP_BREAK_SYSTEM_PACKAGES: 1

steps:
# act workaround
- if: ${{ matrix.distribution == 'ubuntu' }}
run: |
apt update
apt -y install nodejs
- if: ${{ matrix.distribution == 'almalinux'}}
run: |
dnf -y module enable nodejs:20
dnf -y install nodejs
- name: fetch source
uses: actions/checkout@v4

Expand Down

0 comments on commit 19bd371

Please sign in to comment.