mirror of
https://github.com/bytedance/g3.git
synced 2026-05-05 23:41:57 +00:00
add initial circleci config
Some checks are pending
CodeCoverage / lib unit test (push) Waiting to run
CodeCoverage / g3mkcert test (push) Waiting to run
CodeCoverage / g3keymess test (push) Waiting to run
CodeCoverage / g3proxy test (push) Waiting to run
CodeCoverage / g3bench test (push) Waiting to run
CodeCoverage / g3statsd test (push) Waiting to run
CodeQL Advanced / Analyze (actions) (push) Waiting to run
CodeQL Advanced / Analyze (java-kotlin) (push) Waiting to run
CodeQL Advanced / Analyze (python) (push) Waiting to run
CodeQL Advanced / Analyze (rust) (push) Waiting to run
CrossCompiling / Build (push) Waiting to run
Linux-CI / Build (push) Waiting to run
Linux-CI / Clippy (push) Waiting to run
Linux-CI / Build vendored (push) Waiting to run
Linux-CI / Build with OpenSSL Async Job (push) Waiting to run
MacOS-CI / Build (push) Waiting to run
MacOS-CI / Build vendored (push) Waiting to run
StaticLinking / musl (push) Waiting to run
StaticLinking / msvc (push) Waiting to run
Windows-CI / Build (push) Waiting to run
Windows-CI / Build vendored (push) Waiting to run
Some checks are pending
CodeCoverage / lib unit test (push) Waiting to run
CodeCoverage / g3mkcert test (push) Waiting to run
CodeCoverage / g3keymess test (push) Waiting to run
CodeCoverage / g3proxy test (push) Waiting to run
CodeCoverage / g3bench test (push) Waiting to run
CodeCoverage / g3statsd test (push) Waiting to run
CodeQL Advanced / Analyze (actions) (push) Waiting to run
CodeQL Advanced / Analyze (java-kotlin) (push) Waiting to run
CodeQL Advanced / Analyze (python) (push) Waiting to run
CodeQL Advanced / Analyze (rust) (push) Waiting to run
CrossCompiling / Build (push) Waiting to run
Linux-CI / Build (push) Waiting to run
Linux-CI / Clippy (push) Waiting to run
Linux-CI / Build vendored (push) Waiting to run
Linux-CI / Build with OpenSSL Async Job (push) Waiting to run
MacOS-CI / Build (push) Waiting to run
MacOS-CI / Build vendored (push) Waiting to run
StaticLinking / musl (push) Waiting to run
StaticLinking / msvc (push) Waiting to run
Windows-CI / Build (push) Waiting to run
Windows-CI / Build vendored (push) Waiting to run
This commit is contained in:
parent
1c8c6edea6
commit
744ecaabc2
1 changed files with 126 additions and 0 deletions
126
.circleci/config.yml
Normal file
126
.circleci/config.yml
Normal file
|
|
@ -0,0 +1,126 @@
|
|||
version: 2.1
|
||||
|
||||
orbs:
|
||||
rust: circleci/rust@1.8.0
|
||||
|
||||
parameters:
|
||||
package:
|
||||
type: string
|
||||
default: g3mkcert
|
||||
|
||||
steps:
|
||||
- add_ssh_keys:
|
||||
fingerprints:
|
||||
- "SHA256:7XwPpRkMjp+R8ZsjzPO/X1Zif0+i7duTrYbyhOgb3d0"
|
||||
|
||||
jobs:
|
||||
build-deb:
|
||||
parameters:
|
||||
image:
|
||||
type: string
|
||||
class:
|
||||
type: string
|
||||
docker:
|
||||
- image: << parameters.image >>
|
||||
resource_class: << parameters.class >>
|
||||
steps:
|
||||
- run: apt-get update
|
||||
- run:
|
||||
name: Install tools
|
||||
command: apt-get install -y curl git
|
||||
- rust/install:
|
||||
version: stable
|
||||
- checkout
|
||||
- run:
|
||||
name: Install package tools
|
||||
command: apt-get install -y jq lsb-release dpkg-dev debhelper
|
||||
- run:
|
||||
name: Install dev tools and libs
|
||||
environment:
|
||||
DEBIAN_FRONTEND: noninteractive
|
||||
command: |
|
||||
apt-get install -y pkgconf capnproto cmake
|
||||
apt-get install -y libssl-dev libc-ares-dev
|
||||
apt-get install -y python3-sphinx python3-sphinx-rtd-theme
|
||||
- run:
|
||||
name: Build package
|
||||
command: ./scripts/build_deb_from_git.sh << pipeline.parameters.package >>
|
||||
build-rpm:
|
||||
parameters:
|
||||
image:
|
||||
type: string
|
||||
class:
|
||||
type: string
|
||||
docker:
|
||||
- image: << parameters.image >>
|
||||
resource_class: << parameters.class >>
|
||||
steps:
|
||||
- rust/install:
|
||||
version: stable
|
||||
- when:
|
||||
condition:
|
||||
matches:
|
||||
pattern: "^rockylinux/.*"
|
||||
value: << parameters.image >>
|
||||
steps:
|
||||
- run:
|
||||
name: Install package tools
|
||||
command: dnf install -y git jq rpmdevtools rpm-build
|
||||
- run:
|
||||
name: Install dev tools and libs
|
||||
command: |
|
||||
dnf install -y epel-release
|
||||
dnf config-manager --set-enabled devel
|
||||
dnf install -y pkgconf capnproto gcc make cmake
|
||||
dnf install -y openssl-devel c-ares-devel
|
||||
dnf install -y python3-devel lua-devel
|
||||
dnf install -y python3-sphinx python3-sphinx_rtd_theme
|
||||
- when:
|
||||
condition:
|
||||
matches:
|
||||
pattern: "^opensuse/.*"
|
||||
value: << parameters.image >>
|
||||
steps:
|
||||
- run:
|
||||
name: Install package tools
|
||||
command: zypper install -y git jq rpmdevtools rpm-build
|
||||
- run:
|
||||
name: Install dev tools and libs
|
||||
command: |
|
||||
zypper install -y pkgconf capnproto gcc make cmake
|
||||
zypper install -y openssl-devel c-ares-devel
|
||||
zypper install -y python3-devel lua-devel
|
||||
zypper install -y python3-Sphinx python3-sphinx_rtd_theme
|
||||
- checkout
|
||||
- run:
|
||||
name: Build package
|
||||
command: ./scripts/build_rpm_from_git.sh << pipeline.parameters.package >>
|
||||
|
||||
workflows:
|
||||
build-deb:
|
||||
jobs:
|
||||
- build-deb:
|
||||
matrix:
|
||||
parameters:
|
||||
class:
|
||||
- large
|
||||
- arm.medium
|
||||
image:
|
||||
- debian:trixie
|
||||
- debian:bookworm
|
||||
- debian:bullseye
|
||||
- ubuntu:24.04
|
||||
- ubuntu:22.04
|
||||
build-rpm:
|
||||
jobs:
|
||||
- build-rpm:
|
||||
matrix:
|
||||
parameters:
|
||||
class:
|
||||
- large
|
||||
- arm.medium
|
||||
image:
|
||||
#- rockylinux/rockylinux:10
|
||||
- rockylinux/rockylinux:9
|
||||
- rockylinux/rockylinux:8
|
||||
- opensuse/leap:15.6
|
||||
Loading…
Add table
Add a link
Reference in a new issue