|
| 1 | +name: release |
| 2 | + |
| 3 | +# Only do the release on x.y.z tags. |
| 4 | +on: |
| 5 | + push: |
| 6 | + tags: |
| 7 | + - "[0-9]+.[0-9]+.[0-9]+" |
| 8 | + |
| 9 | +env: |
| 10 | + CARGO: cargo |
| 11 | + TARGET_FLAGS: |
| 12 | + FEATURES_FLAGS: |
| 13 | + TARGET_DIR: ./target |
| 14 | + CROSS_VERSION: v0.2.5 |
| 15 | + |
| 16 | +permissions: |
| 17 | + contents: write |
| 18 | + |
| 19 | +jobs: |
| 20 | + create-release: |
| 21 | + name: create-release |
| 22 | + runs-on: ubuntu-latest |
| 23 | + steps: |
| 24 | + - uses: actions/checkout@v4 |
| 25 | + - name: Get the release version from the tag |
| 26 | + if: env.VERSION == '' |
| 27 | + run: echo "VERSION=${{ github.ref_name }}" >> $GITHUB_ENV |
| 28 | + - name: Show the version |
| 29 | + run: | |
| 30 | + echo "version is: $VERSION" |
| 31 | + - name: Check that tag version and Cargo.toml version are the same |
| 32 | + shell: bash |
| 33 | + run: | |
| 34 | + if ! grep -q "version = \"$VERSION\"" Cargo.toml; then |
| 35 | + echo "version does not match Cargo.toml" >&2 |
| 36 | + exit 1 |
| 37 | + fi |
| 38 | + - name: Create GitHub release |
| 39 | + env: |
| 40 | + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
| 41 | + run: gh release create $VERSION --draft --verify-tag --title $VERSION |
| 42 | + outputs: |
| 43 | + version: ${{ env.VERSION }} |
| 44 | + |
| 45 | + build-release: |
| 46 | + name: build-release |
| 47 | + needs: ['create-release'] |
| 48 | + runs-on: ${{ matrix.os }} |
| 49 | + strategy: |
| 50 | + fail-fast: false |
| 51 | + matrix: |
| 52 | + include: |
| 53 | + - build: stable-x86_64 (gnu) |
| 54 | + os: ubuntu-latest |
| 55 | + rust: stable |
| 56 | + target: x86_64-unknown-linux-gnu |
| 57 | + features: vendored-openssl |
| 58 | + - build: stable-x86_64 (musl) |
| 59 | + os: ubuntu-latest |
| 60 | + rust: stable |
| 61 | + target: x86_64-unknown-linux-musl |
| 62 | + features: vendored-openssl |
| 63 | + - build: stable-x86 |
| 64 | + os: ubuntu-latest |
| 65 | + rust: stable |
| 66 | + target: i686-unknown-linux-gnu |
| 67 | + features: vendored-openssl |
| 68 | + - build: stable-aarch64 |
| 69 | + os: ubuntu-latest |
| 70 | + rust: stable |
| 71 | + target: aarch64-unknown-linux-gnu |
| 72 | + features: vendored-openssl |
| 73 | + - build: stable-arm-gnueabihf |
| 74 | + os: ubuntu-latest |
| 75 | + rust: stable |
| 76 | + target: armv7-unknown-linux-gnueabihf |
| 77 | + features: vendored-openssl |
| 78 | + - build: stable-arm-musleabihf |
| 79 | + os: ubuntu-latest |
| 80 | + rust: stable |
| 81 | + target: armv7-unknown-linux-musleabihf |
| 82 | + features: vendored-openssl |
| 83 | + - build: stable-arm-musleabi |
| 84 | + os: ubuntu-latest |
| 85 | + rust: stable |
| 86 | + target: armv7-unknown-linux-musleabi |
| 87 | + features: vendored-openssl |
| 88 | + - build: stable-powerpc64 |
| 89 | + os: ubuntu-latest |
| 90 | + rust: stable |
| 91 | + target: powerpc64-unknown-linux-gnu |
| 92 | + features: vendored-openssl |
| 93 | + - build: stable-s390x |
| 94 | + os: ubuntu-latest |
| 95 | + rust: stable |
| 96 | + target: s390x-unknown-linux-gnu |
| 97 | + features: vendored-openssl |
| 98 | + |
| 99 | + steps: |
| 100 | + - name: Checkout repository |
| 101 | + uses: actions/checkout@v4 |
| 102 | + |
| 103 | + - name: Install Rust |
| 104 | + uses: dtolnay/rust-toolchain@master |
| 105 | + with: |
| 106 | + toolchain: ${{ matrix.rust }} |
| 107 | + target: ${{ matrix.target }} |
| 108 | + |
| 109 | + - name: Use Cross |
| 110 | + if: matrix.os == 'ubuntu-latest' && matrix.target != '' |
| 111 | + shell: bash |
| 112 | + run: | |
| 113 | + # In the past, new releases of 'cross' have broken CI. So for now, we |
| 114 | + # pin it. We also use their pre-compiled binary releases because cross |
| 115 | + # has over 100 dependencies and takes a bit to compile. |
| 116 | + dir="$RUNNER_TEMP/cross-download" |
| 117 | + mkdir "$dir" |
| 118 | + echo "$dir" >> $GITHUB_PATH |
| 119 | + cd "$dir" |
| 120 | + curl -LO "https://github.com/cross-rs/cross/releases/download/$CROSS_VERSION/cross-x86_64-unknown-linux-musl.tar.gz" |
| 121 | + tar xf cross-x86_64-unknown-linux-musl.tar.gz |
| 122 | + echo "CARGO=cross" >> $GITHUB_ENV |
| 123 | +
|
| 124 | + - name: Set target variables |
| 125 | + shell: bash |
| 126 | + if: matrix.target != '' |
| 127 | + run: | |
| 128 | + echo "TARGET_FLAGS=--target ${{ matrix.target }}" >> $GITHUB_ENV |
| 129 | + echo "TARGET_DIR=./target/${{ matrix.target }}" >> $GITHUB_ENV |
| 130 | +
|
| 131 | + - name: Set features variable |
| 132 | + shell: bash |
| 133 | + if: matrix.features != '' |
| 134 | + run: echo "FEATURES_FLAGS=--features ${{ matrix.features }}" >> $GITHUB_ENV |
| 135 | + |
| 136 | + - name: Show command used for Cargo |
| 137 | + shell: bash |
| 138 | + run: | |
| 139 | + echo "cargo command is: ${{ env.CARGO }}" |
| 140 | + echo "target flag is: ${{ env.TARGET_FLAGS }}" |
| 141 | + echo "target dir is: ${{ env.TARGET_DIR }}" |
| 142 | + echo "features flag is: ${{ env.FEATURES_FLAGS }}" |
| 143 | +
|
| 144 | + - name: Build release binary |
| 145 | + shell: bash |
| 146 | + run: | |
| 147 | + ${{ env.CARGO }} build --verbose --release ${{ env.FEATURES_FLAGS }} ${{ env.TARGET_FLAGS }} |
| 148 | + bin="target/${{ matrix.target }}/release/deltasync" |
| 149 | + echo "BIN=$bin" >> $GITHUB_ENV |
| 150 | +
|
| 151 | + - name: Determine archive name |
| 152 | + shell: bash |
| 153 | + run: | |
| 154 | + version="${{ needs.create-release.outputs.version }}" |
| 155 | + echo "ARCHIVE=deltasync-$version-${{ matrix.target }}" >> $GITHUB_ENV |
| 156 | +
|
| 157 | + - name: Copy binary in archive |
| 158 | + shell: bash |
| 159 | + run: | |
| 160 | + mkdir -p "$ARCHIVE" |
| 161 | + cp "$BIN" "$ARCHIVE"/ |
| 162 | +
|
| 163 | + - name: Build archive |
| 164 | + shell: bash |
| 165 | + run: | |
| 166 | + tar czf "$ARCHIVE.tar.gz" "$ARCHIVE" |
| 167 | + shasum -a 256 "$ARCHIVE.tar.gz" > "$ARCHIVE.tar.gz.sha256" |
| 168 | + echo "ASSET=$ARCHIVE.tar.gz" >> $GITHUB_ENV |
| 169 | + echo "ASSET_SUM=$ARCHIVE.tar.gz.sha256" >> $GITHUB_ENV |
| 170 | +
|
| 171 | + - name: Upload release archive |
| 172 | + env: |
| 173 | + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
| 174 | + shell: bash |
| 175 | + run: | |
| 176 | + version="${{ needs.create-release.outputs.version }}" |
| 177 | + gh release upload "$version" ${{ env.ASSET }} ${{ env.ASSET_SUM }} |
0 commit comments