Skip to content

Commit 6495f40

Browse files
authored
Merge pull request #540 from tock/ci-update-gcc
CI: Don't pin ARM GCC version
2 parents 9a5f432 + 418c47c commit 6495f40

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,6 @@ jobs:
2222
- uses: actions/checkout@v2
2323
with:
2424
submodules: false # LVGL makefile manually installs the submodule
25-
- uses: carlosperate/arm-none-eabi-gcc-action@v1
26-
with:
27-
release: '10.3-2021.07' # The arm-none-eabi-gcc release to use.
28-
- name: setup-riscv-toolchain
29-
run: sudo apt-get install -y gcc-riscv64-unknown-elf
3025
- name: ci-format
3126
run: pushd examples; ./format_all.sh || exit; popd
3227

@@ -43,8 +38,7 @@ jobs:
4338
with:
4439
submodules: recursive
4540
- uses: carlosperate/arm-none-eabi-gcc-action@v1
46-
with:
47-
release: '10.3-2021.07' # The arm-none-eabi-gcc release to use.
41+
- run: arm-none-eabi-gcc --version
4842
- name: setup-riscv-toolchain
4943
run: sudo apt-get install -y gcc-riscv64-unknown-elf
5044
- name: ci-build

examples/tests/kv/kv_system/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#define DATA_LEN 32
99

1010
uint8_t key_buf[KEY_LEN] = "First Key";
11-
uint8_t data_buf[DATA_LEN] = "My secret key, that no one knows";
11+
uint8_t data_buf[DATA_LEN] = "My secret key that no one knows";
1212
uint8_t out_buf[DATA_LEN] = "Just junk";
1313

1414
static void kv_cb(int result,

libnrfserialization/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ override CPPFLAGS += -I$(TOCK_USERLAND_BASE_DIR)/libtock
9191

9292
# Avoid failing in CI due to warnings in the library.
9393
CPPFLAGS_$(LIBNAME) += -Wno-error
94+
CPPFLAGS_$(LIBNAME) += -Wno-implicit-function-declaration
9495

9596
# Include the rules to build the library.
9697
include $(TOCK_USERLAND_BASE_DIR)/TockLibrary.mk

0 commit comments

Comments
 (0)