Skip to content

Commit

Permalink
chore: Update runner to 24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
rolljee committed Dec 18, 2024
1 parent 67f0e68 commit 93b53ef
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 2 deletions.
8 changes: 8 additions & 0 deletions .github/actions/install-packages/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name: Install Packages
description: Install necessary packages inside the CI

runs:
using: "composite"
steps:
- run: sudo apt install libunwind-dev libunwind8 -y
shell: bash
24 changes: 24 additions & 0 deletions .github/workflows/deploy_main.workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install additional libraries
uses: ./.github/actions/install-packages

- name: Setup Node.js
uses: actions/setup-node@v4
with:
Expand All @@ -50,6 +53,9 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install additional libraries
uses: ./.github/actions/install-packages

- name: Setup Node.js
uses: actions/setup-node@v4
with:
Expand All @@ -73,6 +79,9 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Install additional libraries
uses: ./.github/actions/install-packages

- name: Get current commit short SHA
id: vars
shell: bash
Expand Down Expand Up @@ -115,6 +124,9 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Install additional libraries
uses: ./.github/actions/install-packages

- name: Get current commit short SHA
id: vars
shell: bash
Expand Down Expand Up @@ -145,6 +157,9 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Install additional libraries
uses: ./.github/actions/install-packages

- name: Get current commit short SHA
id: vars
shell: bash
Expand Down Expand Up @@ -186,6 +201,9 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Install additional libraries
uses: ./.github/actions/install-packages

- name: Get current commit short SHA
id: vars
shell: bash
Expand Down Expand Up @@ -220,6 +238,9 @@ jobs:
# steps:
# - uses: actions/checkout@v4

# - name: Install additional libraries
# uses: ./.github/actions/install-packages

# - name: Get current commit short SHA
# id: vars
# shell: bash
Expand Down Expand Up @@ -261,6 +282,9 @@ jobs:
# steps:
# - uses: actions/checkout@v4

# - name: Install additional libraries
# uses: ./.github/actions/install-packages

# - name: Get current commit short SHA
# id: vars
# shell: bash
Expand Down
10 changes: 8 additions & 2 deletions .github/workflows/development.workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,14 @@ env:
jobs:
lint:
name: Lint
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install additional libraries
uses: ./.github/actions/install-packages

- name: Setup Node.js
uses: actions/setup-node@v4
with:
Expand All @@ -32,12 +35,15 @@ jobs:

functional-tests-backend:
name: Functional Tests
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: [lint]
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install additional libraries
uses: ./.github/actions/install-packages

- name: Setup Node.js
uses: actions/setup-node@v4
with:
Expand Down

0 comments on commit 93b53ef

Please sign in to comment.