Skip to content

Commit f02cc05

Browse files
committed
github: workflows: Use recent Ubuntu & GCC
Signed-off-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
1 parent 8c8e7e0 commit f02cc05

File tree

2 files changed

+4
-11
lines changed

2 files changed

+4
-11
lines changed

.github/workflows/build_linux_arm64.yml

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,26 +14,19 @@ on:
1414
jobs:
1515
build:
1616

17-
runs-on: ubuntu-22.04
17+
runs-on: ubuntu-latest
1818

1919
steps:
2020
- name: Git checkout
2121
uses: actions/checkout@v4
2222

23-
- name: Install auto tools
23+
- name: Install build dependencies
2424
run: |
25-
sudo apt-get install automake
25+
sudo apt-get install automake g++-aarch64-linux-gnu binutils-aarch64-linux-gnu
2626
27-
- name: Download Linaro tools and untar
28-
run: |
29-
wget -c https://releases.linaro.org/components/toolchain/binaries/latest-7/aarch64-linux-gnu/gcc-linaro-7.5.0-2019.12-i686_aarch64-linux-gnu.tar.xz
30-
tar xf gcc-linaro-7.5.0-2019.12-i686_aarch64-linux-gnu.tar.xz
31-
3227
- name: Set Up Build Environment and compile code for LE platform
3328
run: |
34-
3529
# Set Up Build Environment
36-
export PATH="$PWD/gcc-linaro-7.5.0-2019.12-i686_aarch64-linux-gnu/bin/:$PATH"
3730
export CC=aarch64-linux-gnu-gcc
3831
export CXX=aarch64-linux-gnu-g++
3932
export AS=aarch64-linux-gnu-as

.github/workflows/build_linux_gnu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
jobs:
1515
build:
1616

17-
runs-on: ubuntu-24.04
17+
runs-on: ubuntu-latest
1818

1919
steps:
2020
- name: Git checkout

0 commit comments

Comments
 (0)