-
-
Notifications
You must be signed in to change notification settings - Fork 14
129 lines (112 loc) · 4.03 KB
/
Copy pathrelease-prepare.yml
File metadata and controls
129 lines (112 loc) · 4.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# Tag gate for a releasable build. Pushing a v* tag validates the tag, runs the
# full test suite, and builds the server binaries once. Nothing is published and
# nothing leaves the repo.
#
# The manual `Release` workflow then consumes THIS run's binary artifacts by run
# ID — for both the GitHub Release and the Docker image — so a failure in any
# distribution stage can be fixed and retried without repeating the tests or the
# compile.
#
# Artifacts are retained 14 days: that is the window in which a `Release` run can
# still resume from this prepare run.
name: Release Prepare
run-name: Release Prepare ${{ github.ref_name }}
on:
push:
tags:
- "v*"
concurrency:
group: release-prepare-${{ github.ref_name }}
cancel-in-progress: false
permissions:
contents: read
env:
CARGO_TERM_COLOR: always
jobs:
validate-version:
uses: ./.github/workflows/release-validate.yml
with:
ref: ${{ github.ref_name }}
# Full lint + fast suite + 3-node cluster suite. Calls test.yml directly
# rather than ci.yml, whose opt-in label gate only makes sense on a PR.
ci:
name: CI Gate
needs: validate-version
uses: ./.github/workflows/test.yml
build-server:
name: Build server (${{ matrix.label }})
needs: [validate-version, ci]
runs-on: ${{ matrix.runs-on }}
strategy:
fail-fast: false
matrix:
include:
- runs-on: ubuntu-latest
target: x86_64-unknown-linux-gnu
label: linux-x64
- runs-on: ubuntu-24.04-arm
target: aarch64-unknown-linux-gnu
label: linux-arm64
steps:
- uses: actions/checkout@v7
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
- uses: Swatinem/rust-cache@v2
with:
prefix-key: server-${{ matrix.target }}
- name: Install system deps
run: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends \
cmake clang libclang-dev pkg-config protobuf-compiler perl \
libcurl4-openssl-dev libsasl2-dev
- name: Set version from tag
run: bash scripts/ci/stamp_version.sh "${{ needs.validate-version.outputs.version }}"
- name: Build server binary
run: cargo build -p nodedb --release --target ${{ matrix.target }}
- name: Package
run: |
cd target/${{ matrix.target }}/release
chmod +x nodedb
tar czf nodedb-${{ needs.validate-version.outputs.version }}-${{ matrix.label }}.tar.gz nodedb
ls -lh nodedb-*.tar.gz
# Two artifacts per arch: the tarball ships in the GitHub Release, the
# bare binary is the Docker build context. Same bytes, different shape.
- uses: actions/upload-artifact@v7
with:
name: server-${{ matrix.label }}
path: target/${{ matrix.target }}/release/nodedb-*.tar.gz
retention-days: 14
- uses: actions/upload-artifact@v7
with:
name: binary-${{ matrix.label }}
path: target/${{ matrix.target }}/release/nodedb
retention-days: 14
summary:
name: Release instructions
needs: [validate-version, build-server]
runs-on: ubuntu-latest
steps:
- name: Write summary
env:
VERSION: ${{ needs.validate-version.outputs.version }}
REPO: ${{ github.repository }}
RUN_ID: ${{ github.run_id }}
run: |
{
echo "## Prepared v${VERSION}"
echo
echo "Tests passed and both server binaries are built. Publish with:"
echo
echo '```sh'
echo "gh workflow run release.yml -R ${REPO} \\"
echo " -f tag=v${VERSION} \\"
echo " -f prepare_run_id=${RUN_ID}"
echo '```'
echo
echo "If one stage fails, re-run the same command with only the"
echo "remaining stages enabled (\`-f publish_crates=false\`, etc.)."
echo "Nothing is recompiled."
} >> "$GITHUB_STEP_SUMMARY"