Compare commits

..

13 Commits

Author SHA1 Message Date
3603d82802 Merge pull request #847 from thewtex/emscripten-3-1-64
Update emscripten to 3.1.64 and cmake_minimum_required to 3.16
2024-08-09 06:23:21 +02:00
8231b1f6d0 test: bump cmake_minimum_required to 3.16
To address:

CMake Deprecation Warning at CMakeLists.txt:1 (cmake_minimum_required):
  Compatibility with CMake < 3.5 will be removed from a future version of
  CMake.

  Update the VERSION argument <min> value or use a ...<max> suffix to tell
  CMake that the project does not need compatibility with older versions.

Bump to a later version available in relatively recent Linux
distributions.
2024-08-08 13:39:08 -04:00
9751032bf7 web-wasm: bump emscripten to 3.1.64 2024-08-08 13:00:19 -04:00
1276ade1f0 Change binutils version and update config
Signed-off-by: Bensuperpc <bensuperpc@gmail.com>
2024-08-07 23:18:36 +02:00
ac61758ca6 Fix wrong config
Signed-off-by: Bensuperpc <bensuperpc@gmail.com>
2024-08-07 23:18:36 +02:00
748f3c06fe Add cortex-a53 to CT_ARCH_CPU
Signed-off-by: Bensuperpc <bensuperpc@gmail.com>
2024-08-07 23:18:36 +02:00
a1ff15e206 Fix duplicate variable
Signed-off-by: Bensuperpc <bensuperpc@gmail.com>
2024-08-07 23:18:36 +02:00
45c870a3f5 Replace . with _ for llama variables names
Signed-off-by: Bensuperpc <bensuperpc@gmail.com>
2024-08-07 23:18:36 +02:00
26baad281a Add llama.cpp on CI
Signed-off-by: Bensuperpc <bensuperpc@gmail.com>
2024-08-07 23:18:36 +02:00
24fa6a0962 Update main.yml
Disable for now C-Plus-Plus for linux-arm64
2024-08-07 23:18:36 +02:00
ab75e7c5a0 Fix: enable build id and fortran on linux-arm64
Signed-off-by: Bensuperpc <bensuperpc@gmail.com>
2024-08-07 23:18:36 +02:00
4f1ad856dd Update linux/arm64
Signed-off-by: Bensuperpc <bensuperpc@gmail.com>
2024-08-07 23:18:36 +02:00
64da83ae96 add ccache to common debian container 2024-08-05 18:51:09 +02:00
3 changed files with 3 additions and 2 deletions

View File

@ -11,6 +11,7 @@ RUN \
build-essential \
bzip2 \
ca-certificates \
ccache \
curl \
dirmngr \
file \

View File

@ -44,7 +44,7 @@ def test_cmake_build_system(build_dir, language, source, emulator, linker_flags,
print('Building ' + source + ' with CMake...')
with open('CMakeLists.txt', 'w') as fp:
fp.write('cmake_minimum_required(VERSION 3.0)\n')
fp.write('cmake_minimum_required(VERSION 3.16)\n')
fp.write('project(test-compiler)\n')
fp.write('add_executable(a.out ' + os.path.basename(source) + ')\n')
if emulator:

View File

@ -1,4 +1,4 @@
ARG DOCKER_IMAGE_VERSION=3.1.60
ARG DOCKER_IMAGE_VERSION=3.1.64
FROM emscripten/emsdk:$DOCKER_IMAGE_VERSION
LABEL maintainer="Matt McCormick matt.mccormick@kitware.com"