mirror of
https://github.com/berlin-open-wireless-lab/DAWN.git
synced 2025-02-12 08:41:51 +00:00
ci: fix ci install packages and gcc version string
The package names changed to python3 and OpenWrt switched to gcc-12.
This commit is contained in:
parent
da8d870d1e
commit
5ee3c0a7e8
1 changed files with 3 additions and 3 deletions
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
|
@ -12,11 +12,11 @@ jobs:
|
|||
with:
|
||||
path: dawn
|
||||
- name: Install dependencies
|
||||
run: sudo apt install git subversion build-essential python gawk unzip libncurses5-dev zlib1g-dev libssl-dev wget time libncurses-dev
|
||||
run: sudo apt install git subversion build-essential python3 gawk unzip libncurses5-dev zlib1g-dev libssl-dev wget time libncurses-dev
|
||||
- name: Download OpenWrt SDK
|
||||
run: curl -o openwrt-sdk.tar.xz https://downloads.openwrt.org/snapshots/targets/ath79/generic/openwrt-sdk-ath79-generic_gcc-11.3.0_musl.Linux-x86_64.tar.xz
|
||||
run: curl -o openwrt-sdk.tar.xz https://downloads.openwrt.org/snapshots/targets/ath79/generic/openwrt-sdk-ath79-generic_gcc-12.2.0_musl.Linux-x86_64.tar.xz
|
||||
- name: Extract OpenWrt SDK
|
||||
run: tar xf openwrt-sdk.tar.xz && mv openwrt-sdk-ath79-generic_gcc-11.3.0_musl.Linux-x86_64 sdk
|
||||
run: tar xf openwrt-sdk.tar.xz && mv openwrt-sdk-ath79-generic_gcc-12.2.0_musl.Linux-x86_64 sdk
|
||||
- name: Create config
|
||||
run: make -C sdk defconfig && echo "CONFIG_SRC_TREE_OVERRIDE=y" >> sdk/.config
|
||||
- name: Update package feed
|
||||
|
|
Loading…
Reference in a new issue