Skip to content

Commit 6cf34c1

Browse files
authored
Merge pull request #20 from cschreib/snitch-update
Update CI and testing framework
2 parents a07d16e + bc9d968 commit 6cf34c1

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

.github/workflows/cmake.yml

+9-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
name: CI
22

3-
on: push
3+
on:
4+
workflow_dispatch:
5+
pull_request:
6+
push:
7+
branches:
8+
- main
49

510
env:
6-
EM_VERSION: 2.0.34
11+
EM_VERSION: 3.1.35
712
EM_CACHE_FOLDER: 'emsdk-cache'
813
CODECOV_TOKEN: '99959e57-0b92-48b4-bf55-559d43d41b58'
914

@@ -39,14 +44,14 @@ jobs:
3944
- name: Setup Emscripten cache
4045
if: matrix.platform.compiler == 'em++'
4146
id: cache-system-libraries
42-
uses: actions/cache@v3.0.4
47+
uses: actions/cache@v3.3.1
4348
with:
4449
path: ${{env.EM_CACHE_FOLDER}}
4550
key: ${{env.EM_VERSION}}-${{matrix.platform.name}}-${{matrix.build-type}}
4651

4752
- name: Setup Emscripten
4853
if: matrix.platform.compiler == 'em++'
49-
uses: mymindstorm/setup-emsdk@v11
54+
uses: mymindstorm/setup-emsdk@v12
5055
with:
5156
version: ${{env.EM_VERSION}}
5257
actions-cache-folder: ${{env.EM_CACHE_FOLDER}}

tests/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ include(FetchContent)
3333

3434
FetchContent_Declare(snitch
3535
GIT_REPOSITORY https://github.com/cschreib/snitch.git
36-
GIT_TAG v1.0.0)
36+
GIT_TAG v1.1.0)
3737
FetchContent_MakeAvailable(snitch)
3838

3939
set(RUNTIME_TEST_FILES

0 commit comments

Comments
 (0)