Skip to content

Commit 02f68db

Browse files
authored
fix: change ci job for cmake (#119)
* fix: change ci job for cmake * chore: update snapshots * disable concurrency on jest for testing
1 parent f6e67fe commit 02f68db

File tree

11 files changed

+8
-8
lines changed

11 files changed

+8
-8
lines changed

.github/workflows/main.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -31,21 +31,21 @@ jobs:
3131
sudo apt-get install -y curl protobuf-compiler build-essential git wget unzip python3 python3-pip \
3232
libssl-dev libffi-dev libreadline-dev zlib1g-dev libbz2-dev libsqlite3-dev libncurses5-dev \
3333
libgdbm-dev libnss3-dev liblzma-dev libxml2-dev libxmlsec1-dev libffi-dev libyaml-dev
34+
- name: Install rust
35+
uses: actions-rs/toolchain@v1
36+
with:
37+
toolchain: stable
3438
- name: Checkout
3539
uses: actions/checkout@v4
3640
with:
3741
submodules: true
38-
- name: Install rust
39-
uses: actions-rust-lang/setup-rust-toolchain@v1
40-
with:
41-
toolchain: stable
4242
- name: Install CMake 3.28
4343
run: |
4444
wget https://github.com/Kitware/CMake/releases/download/v3.28.0/cmake-3.28.0-linux-x86_64.sh
4545
sudo mkdir /opt/cmake
4646
sudo sh cmake-3.28.0-linux-x86_64.sh --skip-license --prefix=/opt/cmake
47-
sudo ln -s /opt/cmake/bin/cmake /usr/local/bin/cmake
48-
sudo ln -s /opt/cmake/bin/ctest /usr/local/bin/ctest
47+
sudo ln -sf /opt/cmake/bin/cmake /usr/local/bin/cmake
48+
sudo ln -sf /opt/cmake/bin/ctest /usr/local/bin/ctest
4949
- name: Verify CMake version
5050
run: cmake --version
5151
- name: Install deps

app/Makefile.version

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ APPVERSION_M=4
33
# This is the minor version
44
APPVERSION_N=1
55
# This is the patch version
6-
APPVERSION_P=2
6+
APPVERSION_P=3

tests_zemu/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"format:check": "FORCE_COLOR=1 prettier --check .",
2020
"lint": "eslint .",
2121
"lint:fix": "eslint --fix .",
22-
"test": "jest",
22+
"test": "jest --maxConcurrency 1",
2323
"try": "node try.ts",
2424
"upgrade": "bunx npm-check-updates -i"
2525
},
66 Bytes
Loading
-2 Bytes
Loading
-2 Bytes
Loading
1 Byte
Loading
1 Byte
Loading
38 Bytes
Loading
1 Byte
Loading
1 Byte
Loading

0 commit comments

Comments
 (0)