11name : Cargo build
22description : |
3- Builds moonbeam with given features.
4- Stores the result in "build/moonbeam " and the runtimes in "runtimes/"
3+ Builds QuStream with given features.
4+ Stores the result in "build/qustream " and the runtimes in "runtimes/"
55
66inputs :
77 features :
4444 shell : bash
4545 run : |
4646 env
47- params=" --locked --release -p moonbeam "
47+ params=" --locked --release -p qustream "
4848 if [ -n "${{ inputs.features }}" ]; then
4949 params="$params --features ${{ inputs.features }}"
5050 fi
5353 - name : Display binary comments
5454 shell : bash
5555 run : |
56- readelf -p .comment ./target/release/moonbeam
57- GLIBC_VERSION="$(objdump -T ./target/release/moonbeam | grep "GLIBC_" | sed 's/.*GLIBC_\([.0-9]*\).*/\1/g' | sort -Vu | tail -1)"
56+ readelf -p .comment ./target/release/qustream
57+ GLIBC_VERSION="$(objdump -T ./target/release/qustream | grep "GLIBC_" | sed 's/.*GLIBC_\([.0-9]*\).*/\1/g' | sort -Vu | tail -1)"
5858 echo "GLIBC Version: $GLIBC_VERSION"
5959 - name : Display sccache stats
6060 shell : bash
6363 shell : bash
6464 run : |
6565 GIT_COMMIT=`git log -1 --format="%H" | cut -c1-7`
66- MB_VERSION=`./target/release/moonbeam --version`
66+ MB_VERSION=`./target/release/qustream --version`
6767 echo "Checking $MB_VERSION contains $GIT_COMMIT"
6868 echo "$MB_VERSION" | grep $GIT_COMMIT
6969 - name : Save runtimes wasm
7373 cp target/release/wbuild/moon*/moon*_runtime.compact.compressed.wasm runtimes/;
7474 mkdir -p uncompressed-runtimes;
7575 cp target/release/wbuild/moon*/moon*_runtime.wasm uncompressed-runtimes/;
76- - name : Save moonbeam binary
76+ - name : Save QuStream binary
7777 shell : bash
7878 run : |
7979 mkdir -p build
80- cp target/release/moonbeam build/moonbeam ;
80+ cp target/release/qustream build/qustream ;
0 commit comments