diff --git a/.github/workflows/ruskwallet_build.yml b/.github/workflows/ruskwallet_build.yml index 4b7391a7a..ddd9e90c9 100644 --- a/.github/workflows/ruskwallet_build.yml +++ b/.github/workflows/ruskwallet_build.yml @@ -22,27 +22,18 @@ jobs: compiler: [cargo] include: - os: ubuntu-24.04 - compiler: cargo target: linux-x64 - - os: arm-linux - compiler: cargo target: linux-arm64 flags: --target=aarch64-unknown-linux-gnu platform: aarch64-unknown-linux-gnu - - os: macos-latest - compiler: cargo target: macos-intel - - os: macos-15 - compiler: cargo target: macos-arm64 flags: --target=aarch64-apple-darwin platform: aarch64-apple-darwin - - os: windows-latest - compiler: cargo target: windows-x64 steps: @@ -58,15 +49,14 @@ jobs: run: rustup target add aarch64-apple-darwin if: ${{ matrix.os == 'macos-15' }} - - name: Build Wallet + - name: Build Rusk Wallet shell: bash working-directory: ./rusk-wallet - run: ${{matrix.compiler}} b --release --verbose ${{matrix.flags}} + run: cargo build --release --verbose ${{matrix.flags}} - name: Get semver from wallet binary run: | - ls -la target/release - export SEMVER=$(cargo pkgid --mainfest-path ./rusk-wallet/Cargo.toml | perl -lpe 's/.*\@(.*)/$1/') + export SEMVER=$(cargo pkgid --manifest-path ./rusk-wallet/Cargo.toml | sed -E 's/.*#([0-9]+\.[0-9]+\.[0-9]+).*/\1/') echo "SEMVER=$SEMVER" >> $GITHUB_ENV - name: "Pack binaries"