Skip to content

Commit

Permalink
downgraded all seat actions to ubuntu-20.04
Browse files Browse the repository at this point in the history
fixed megalinter complaints

Signed-off-by: Ivan Kirchev <[email protected]>
  • Loading branch information
int0x27 authored and SebastianSchildt committed Mar 1, 2023
1 parent eae3a74 commit 2694b94
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/seat_service_docu_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ on:

jobs:
build:
runs-on: ubuntu-latest
# reduce runtime requirements from libc/libc++
runs-on: ubuntu-20.04
name: Build docu

steps:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/seat_service_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ on:

jobs:
build:
runs-on: ubuntu-latest
# reduce runtime requirements from libc/libc++
runs-on: ubuntu-20.04
name: Build
strategy:
matrix:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/seat_service_seatctrl_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ env:

jobs:
build:
runs-on: ubuntu-latest
# reduce runtime requirements from libc/libc++
runs-on: ubuntu-20.04
name: Build
steps:
- name: adding github workspace as safe directory
Expand Down
3 changes: 2 additions & 1 deletion seat_service/build-debug.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@
# SPDX-License-Identifier: Apache-2.0
#*******************************************************************************/

# shellcheck disable=SC2046

# Specify:
# first argument: TARGET_ARCH = "x86_64" or "aarch64"; default: "x86_64"
# second argument: TARGET_ARCH = "<string>; default: "$SCRIPT_DIR/target/$TARGET_ARCH/Debug"

set -ex

SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
Expand Down
1 change: 1 addition & 0 deletions seat_service/build-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

# shellcheck disable=SC2086
# shellcheck disable=SC2230
# shellcheck disable=SC2046
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"

TARGET_ARCH="$1"
Expand Down

0 comments on commit 2694b94

Please sign in to comment.