Skip to content

Commit

Permalink
Update runner version
Browse files Browse the repository at this point in the history
  • Loading branch information
rolljee committed Dec 18, 2024
1 parent 93b53ef commit 47e63e7
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/actions/install-packages/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ description: Install necessary packages inside the CI
runs:
using: "composite"
steps:
- run: sudo apt install libunwind-dev libunwind8 -y
- run: sudo apt install libunwind-dev libunwind8 build-essential libstdc++6 -y
shell: bash
16 changes: 8 additions & 8 deletions .github/workflows/deploy_main.workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ env:
jobs:
lint:
name: Lint
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand All @@ -47,7 +47,7 @@ jobs:

functional-tests-backend:
name: Functional Tests
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: [lint]
steps:
- name: Checkout repository
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
push_backend:
name: Backend artefact
needs: [functional-tests-backend]
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:

deploy_backend:
name: Deploy backend artefact
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: [push_backend]
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -153,7 +153,7 @@ jobs:
push_iot_console:
name: IoT Console artefact
needs: [functional-tests-backend]
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -196,7 +196,7 @@ jobs:

deploy_iot_console:
name: Deploy IoT Console App to server
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: [push_iot_console]
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -234,7 +234,7 @@ jobs:
# push_exporter:
# name: Exporter artefact
# needs: [functional-tests-backend]
# runs-on: ubuntu-20.04
# runs-on: ubuntu-24.04
# steps:
# - uses: actions/checkout@v4

Expand Down Expand Up @@ -277,7 +277,7 @@ jobs:

# deploy_exporter:
# name: Deploy Exporter App to server
# runs-on: ubuntu-20.04
# runs-on: ubuntu-24.04
# needs: [push_exporter]
# steps:
# - uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ services:
start_period: 1m

web:
image: kuzzleio/kuzzle-runner:18
image: kuzzleio/kuzzle-runner:20
command: sh /var/app/start.sh web
volumes:
- .:/var/app
Expand Down

0 comments on commit 47e63e7

Please sign in to comment.