File tree 11 files changed +8
-8
lines changed
11 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -31,21 +31,21 @@ jobs:
31
31
sudo apt-get install -y curl protobuf-compiler build-essential git wget unzip python3 python3-pip \
32
32
libssl-dev libffi-dev libreadline-dev zlib1g-dev libbz2-dev libsqlite3-dev libncurses5-dev \
33
33
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
34
38
- name : Checkout
35
39
uses : actions/checkout@v4
36
40
with :
37
41
submodules : true
38
- - name : Install rust
39
- uses : actions-rust-lang/setup-rust-toolchain@v1
40
- with :
41
- toolchain : stable
42
42
- name : Install CMake 3.28
43
43
run : |
44
44
wget https://github.com/Kitware/CMake/releases/download/v3.28.0/cmake-3.28.0-linux-x86_64.sh
45
45
sudo mkdir /opt/cmake
46
46
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
49
49
- name : Verify CMake version
50
50
run : cmake --version
51
51
- name : Install deps
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ APPVERSION_M=4
3
3
# This is the minor version
4
4
APPVERSION_N=1
5
5
# This is the patch version
6
- APPVERSION_P=2
6
+ APPVERSION_P=3
Original file line number Diff line number Diff line change 19
19
"format:check" : " FORCE_COLOR=1 prettier --check ." ,
20
20
"lint" : " eslint ." ,
21
21
"lint:fix" : " eslint --fix ." ,
22
- "test" : " jest" ,
22
+ "test" : " jest --maxConcurrency 1 " ,
23
23
"try" : " node try.ts" ,
24
24
"upgrade" : " bunx npm-check-updates -i"
25
25
},
You can’t perform that action at this time.
0 commit comments