File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ APPVERSION_M=4
33# This is the minor version
44APPVERSION_N=1
55# This is the patch version
6- APPVERSION_P=2
6+ APPVERSION_P=3
Original file line number Diff line number Diff line change 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 },
You can’t perform that action at this time.
0 commit comments