mirror of
https://github.com/rustfs/rustfs.git
synced 2026-01-17 01:30:33 +00:00
ci: improve build workflow (#115)
* ci: fix build workflow * ci: use setup actions
This commit is contained in:
41
.github/workflows/build.yml
vendored
41
.github/workflows/build.yml
vendored
@@ -4,9 +4,12 @@ on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
- cron: '0 0 * * 0' # at midnight of each sunday
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
build-rustfs:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
@@ -15,28 +18,24 @@ jobs:
|
||||
- uses: dtolnay/rust-toolchain@stable
|
||||
- uses: Swatinem/rust-cache@v2
|
||||
|
||||
- name: install protoc
|
||||
- uses: arduino/setup-protoc@v3
|
||||
with:
|
||||
version: "27.0"
|
||||
|
||||
- uses: Nugine/setup-flatc@v1
|
||||
with:
|
||||
version: "24.3.25"
|
||||
|
||||
- name: Build binaries
|
||||
run: |
|
||||
wget https://github.com/protocolbuffers/protobuf/releases/download/v27.0/protoc-27.0-linux-x86_64.zip
|
||||
unzip protoc-27.0-linux-x86_64.zip -d protoc3
|
||||
mv protoc3/bin/* /usr/local/bin/
|
||||
chmod +x /usr/local/bin/protoc
|
||||
rm -rf protoc-27.0-linux-x86_64.zip protoc3
|
||||
cargo build -p rustfs --bins
|
||||
cargo build -p rustfs --bins --release
|
||||
|
||||
- run: protoc --version
|
||||
|
||||
- name: install flatc
|
||||
run: |
|
||||
wget https://github.com/google/flatbuffers/releases/download/v24.3.25/Linux.flatc.binary.g++-13.zip
|
||||
unzip Linux.flatc.binary.g++-13.zip
|
||||
mv flatc /usr/local/bin/
|
||||
chmod +x /usr/local/bin/flatc
|
||||
rm -rf Linux.flatc.binary.g++-13.zip
|
||||
|
||||
- run: flatc --version
|
||||
|
||||
- run: cargo build -p rustfs --bins --release
|
||||
mkdir -p target/artifacts
|
||||
mv ./target/debug/rustfs ./target/artifacts/rustfs.debug.x86_64-unknown-linux-gnu
|
||||
mv ./target/release/rustfs ./target/artifacts/rustfs.release.x86_64-unknown-linux-gnu
|
||||
|
||||
- uses: actions/upload-artifact@v4
|
||||
with:
|
||||
path: ./target/release/rustfs
|
||||
name: rustfs
|
||||
path: ./target/artifacts/*
|
||||
|
||||
39
.github/workflows/e2e.yml
vendored
39
.github/workflows/e2e.yml
vendored
@@ -39,44 +39,13 @@ jobs:
|
||||
# - nightly
|
||||
|
||||
steps:
|
||||
- name: cache protoc bin
|
||||
id: cache-protoc-action
|
||||
uses: actions/cache@v4
|
||||
env:
|
||||
cache-name: cache-protoc-action-bin
|
||||
- uses: arduino/setup-protoc@v3
|
||||
with:
|
||||
path: /usr/local/bin/protoc
|
||||
key: ${{ runner.os }}-build-${{ env.cache-name }}-v0.0.1
|
||||
version: "27.0"
|
||||
|
||||
- name: install protoc
|
||||
if: steps.cache-protoc-action.outputs.cache-hit != 'true'
|
||||
run: |
|
||||
wget https://github.com/protocolbuffers/protobuf/releases/download/v27.0/protoc-27.0-linux-x86_64.zip
|
||||
unzip protoc-27.0-linux-x86_64.zip -d protoc3
|
||||
mv protoc3/bin/* /usr/local/bin/
|
||||
chmod +x /usr/local/bin/protoc
|
||||
rm -rf protoc-27.0-linux-x86_64.zip protoc3
|
||||
|
||||
- name: print protoc version
|
||||
run: protoc --version
|
||||
|
||||
- name: cache flatc bin
|
||||
id: cache-flatc-action
|
||||
uses: actions/cache@v4
|
||||
env:
|
||||
cache-name: cache-flatc-action-bin
|
||||
- uses: Nugine/setup-flatc@v1
|
||||
with:
|
||||
path: /usr/local/bin/flatc
|
||||
key: ${{ runner.os }}-build-${{ env.cache-name }}-v0.0.1
|
||||
|
||||
- name: install flatc
|
||||
if: steps.cache-flatc-action.outputs.cache-hit != 'true'
|
||||
run: |
|
||||
wget https://github.com/google/flatbuffers/releases/download/v24.3.25/Linux.flatc.binary.g++-13.zip
|
||||
unzip Linux.flatc.binary.g++-13.zip
|
||||
mv flatc /usr/local/bin/
|
||||
chmod +x /usr/local/bin/flatc
|
||||
rm -rf Linux.flatc.binary.g++-13.zip
|
||||
version: "24.3.25"
|
||||
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
|
||||
39
.github/workflows/rust.yml
vendored
39
.github/workflows/rust.yml
vendored
@@ -38,44 +38,13 @@ jobs:
|
||||
- nightly
|
||||
|
||||
steps:
|
||||
- name: cache protoc bin
|
||||
id: cache-protoc-action
|
||||
uses: actions/cache@v4
|
||||
env:
|
||||
cache-name: cache-protoc-action-bin
|
||||
- uses: arduino/setup-protoc@v3
|
||||
with:
|
||||
path: /usr/local/bin/protoc
|
||||
key: ${{ runner.os }}-build-${{ env.cache-name }}-v0.0.1
|
||||
version: "27.0"
|
||||
|
||||
- name: install protoc
|
||||
if: steps.cache-protoc-action.outputs.cache-hit != 'true'
|
||||
run: |
|
||||
wget https://github.com/protocolbuffers/protobuf/releases/download/v27.0/protoc-27.0-linux-x86_64.zip
|
||||
unzip protoc-27.0-linux-x86_64.zip -d protoc3
|
||||
mv protoc3/bin/* /usr/local/bin/
|
||||
chmod +x /usr/local/bin/protoc
|
||||
rm -rf protoc-27.0-linux-x86_64.zip protoc3
|
||||
|
||||
- name: print protoc version
|
||||
run: protoc --version
|
||||
|
||||
- name: cache flatc bin
|
||||
id: cache-flatc-action
|
||||
uses: actions/cache@v4
|
||||
env:
|
||||
cache-name: cache-flatc-action-bin
|
||||
- uses: Nugine/setup-flatc@v1
|
||||
with:
|
||||
path: /usr/local/bin/flatc
|
||||
key: ${{ runner.os }}-build-${{ env.cache-name }}-v0.0.1
|
||||
|
||||
- name: install flatc
|
||||
if: steps.cache-flatc-action.outputs.cache-hit != 'true'
|
||||
run: |
|
||||
wget https://github.com/google/flatbuffers/releases/download/v24.3.25/Linux.flatc.binary.g++-13.zip
|
||||
unzip Linux.flatc.binary.g++-13.zip
|
||||
mv flatc /usr/local/bin/
|
||||
chmod +x /usr/local/bin/flatc
|
||||
rm -rf Linux.flatc.binary.g++-13.zip
|
||||
version: "24.3.25"
|
||||
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
|
||||
Reference in New Issue
Block a user