Skip to content

Commit 2e48ba0

Browse files
committed
implement ci to test commits and deploy on tags
1 parent 5d1e5b4 commit 2e48ba0

File tree

2 files changed

+324
-0
lines changed

2 files changed

+324
-0
lines changed

.github/workflows/ci.yml

+147
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,147 @@
1+
name: ci
2+
on:
3+
pull_request:
4+
push:
5+
branches:
6+
- master
7+
- ci
8+
9+
env:
10+
RUSTFLAGS: -Dwarnings
11+
CARGO: cargo
12+
TARGET_FLAGS:
13+
FEATURES_FLAGS:
14+
TARGET_DIR: ./target
15+
CROSS_VERSION: v0.2.5
16+
CLIPPY_RUST_VERSION: 1.75
17+
RUST_BACKTRACE: 1
18+
19+
jobs:
20+
test:
21+
name: test
22+
runs-on: ${{ matrix.os }}
23+
strategy:
24+
fail-fast: false
25+
matrix:
26+
include:
27+
- build: minimal
28+
os: ubuntu-latest
29+
rust: 1.70.0
30+
- build: stable
31+
os: ubuntu-latest
32+
rust: stable
33+
- build: beta
34+
os: ubuntu-latest
35+
rust: beta
36+
- build: nightly
37+
os: ubuntu-latest
38+
rust: nightly
39+
- build: stable-musl
40+
os: ubuntu-latest
41+
rust: stable
42+
target: x86_64-unknown-linux-musl
43+
features: vendored-openssl
44+
- build: stable-x86
45+
os: ubuntu-latest
46+
rust: stable
47+
target: i686-unknown-linux-gnu
48+
features: vendored-openssl
49+
- build: stable-aarch64
50+
os: ubuntu-latest
51+
rust: stable
52+
target: aarch64-unknown-linux-gnu
53+
features: vendored-openssl
54+
- build: stable-arm-gnueabihf
55+
os: ubuntu-latest
56+
rust: stable
57+
target: armv7-unknown-linux-gnueabihf
58+
features: vendored-openssl
59+
- build: stable-arm-musleabihf
60+
os: ubuntu-latest
61+
rust: stable
62+
target: armv7-unknown-linux-musleabihf
63+
features: vendored-openssl
64+
- build: stable-arm-musleabi
65+
os: ubuntu-latest
66+
rust: stable
67+
target: armv7-unknown-linux-musleabi
68+
features: vendored-openssl
69+
- build: stable-powerpc64
70+
os: ubuntu-latest
71+
rust: stable
72+
target: powerpc64-unknown-linux-gnu
73+
features: vendored-openssl
74+
- build: stable-s390x
75+
os: ubuntu-latest
76+
rust: stable
77+
target: s390x-unknown-linux-gnu
78+
features: vendored-openssl
79+
steps:
80+
- name: Checkout repository
81+
uses: actions/checkout@v4
82+
83+
- name: Install Rust
84+
uses: dtolnay/rust-toolchain@master
85+
with:
86+
toolchain: ${{ matrix.rust }}
87+
88+
- name: Use Cross
89+
if: matrix.os == 'ubuntu-latest' && matrix.target != ''
90+
run: |
91+
# In the past, new releases of 'cross' have broken CI. So for now, we
92+
# pin it. We also use their pre-compiled binary releases because cross
93+
# has over 100 dependencies and takes a bit to compile.
94+
dir="$RUNNER_TEMP/cross-download"
95+
mkdir "$dir"
96+
echo "$dir" >> $GITHUB_PATH
97+
cd "$dir"
98+
curl -LO "https://github.com/cross-rs/cross/releases/download/$CROSS_VERSION/cross-x86_64-unknown-linux-musl.tar.gz"
99+
tar xf cross-x86_64-unknown-linux-musl.tar.gz
100+
echo "CARGO=cross" >> $GITHUB_ENV
101+
echo "TARGET_FLAGS=--target ${{ matrix.target }}" >> $GITHUB_ENV
102+
echo "TARGET_DIR=./target/${{ matrix.target }}" >> $GITHUB_ENV
103+
104+
- name: Enable features
105+
if: matrix.features != ''
106+
run: echo "FEATURES_FLAGS=--features ${{ matrix.features }}" >> $GITHUB_ENV
107+
108+
- name: Show command used for Cargo
109+
run: |
110+
echo "cargo command is: ${{ env.CARGO }}"
111+
echo "target flag is: ${{ env.TARGET_FLAGS }}"
112+
echo "target dir is: ${{ env.TARGET_DIR }}"
113+
echo "features flag is: ${{ env.FEATURES_FLAGS }}"
114+
115+
- name: Build deltasync
116+
run: ${{ env.CARGO }} build --verbose ${{ env.TARGET_FLAGS }} ${{ env.FEATURES_FLAGS }}
117+
118+
- name: Run tests
119+
if: matrix.target == ''
120+
run: ${{ env.CARGO }} test --verbose ${{ env.TARGET_FLAGS }} ${{ env.FEATURES_FLAGS }}
121+
122+
rustfmt:
123+
runs-on: ubuntu-latest
124+
steps:
125+
- name: Checkout repository
126+
uses: actions/checkout@v4
127+
- name: Install Rust
128+
uses: dtolnay/rust-toolchain@master
129+
with:
130+
toolchain: stable
131+
components: rustfmt
132+
- name: Check formatting
133+
run: cargo fmt --all --check
134+
135+
clippy:
136+
runs-on: ubuntu-latest
137+
steps:
138+
- uses: actions/checkout@v4
139+
- name: Install Rust ${{ env.CLIPPY_RUST_VERSION }}
140+
uses: dtolnay/rust-toolchain@stable
141+
with:
142+
toolchain: ${{ env.CLIPPY_RUST_VERSION }}
143+
components: clippy
144+
- uses: Swatinem/rust-cache@v2
145+
# Run clippy
146+
- name: "clippy"
147+
run: cargo clippy --all

.github/workflows/release.yml

+177
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,177 @@
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

Comments
 (0)