split up CI steps
Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
parent
b8108f5897
commit
c2fa8e6f8d
1 changed files with 148 additions and 255 deletions
219
.github/workflows/ci.yml
vendored
219
.github/workflows/ci.yml
vendored
|
@ -26,11 +26,9 @@ permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
ci:
|
setup:
|
||||||
name: CI and Artifacts
|
name: CI Setup
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Sync repository
|
- name: Sync repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
@ -94,193 +92,88 @@ jobs:
|
||||||
./bin/nix-build-and-cache .#devShells.x86_64-linux.default.inputDerivation
|
./bin/nix-build-and-cache .#devShells.x86_64-linux.default.inputDerivation
|
||||||
|
|
||||||
|
|
||||||
|
build-and-test:
|
||||||
|
name: CI and Artifacts
|
||||||
|
needs: setup
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
target: [
|
||||||
|
"static-x86_64-unknown-linux-musl",
|
||||||
|
"static-x86_64-unknown-linux-musl-jemalloc",
|
||||||
|
"static-x86_64-unknown-linux-musl-hmalloc",
|
||||||
|
"static-aarch64-unknown-linux-musl",
|
||||||
|
"static-aarch64-unknown-linux-musl-jemalloc",
|
||||||
|
"static-aarch64-unknown-linux-musl-hmalloc",
|
||||||
|
]
|
||||||
|
oci-target: [
|
||||||
|
"x86_64-unknown-linux-gnu",
|
||||||
|
"x86_64-unknown-linux-musl",
|
||||||
|
"x86_64-unknown-linux-musl-jemalloc",
|
||||||
|
"x86_64-unknown-linux-musl-hmalloc",
|
||||||
|
"aarch64-unknown-linux-musl",
|
||||||
|
"aarch64-unknown-linux-musl-jemalloc",
|
||||||
|
"aarch64-unknown-linux-musl-hmalloc",
|
||||||
|
]
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Download build environment
|
||||||
|
uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
name: build-environment
|
||||||
|
|
||||||
|
|
||||||
- name: Perform continuous integration
|
- name: Perform continuous integration
|
||||||
run: direnv exec . engage
|
run: direnv exec . engage
|
||||||
|
|
||||||
|
|
||||||
- name: Build static-x86_64-unknown-linux-musl and Create static deb-x86_64-unknown-linux-musl
|
- name: Build static artifacts
|
||||||
run: |
|
run: |
|
||||||
./bin/nix-build-and-cache .#static-x86_64-unknown-linux-musl
|
./bin/nix-build-and-cache .#${{ matrix.target }}
|
||||||
mkdir -p target/release
|
mkdir -p target/release
|
||||||
cp -v -f result/bin/conduit target/release
|
cp -v -f result/bin/conduit target/release
|
||||||
direnv exec . cargo deb --no-build
|
direnv exec . cargo deb --no-build --output target/debian/${{ matrix.target }}.deb
|
||||||
|
|
||||||
- name: Upload artifact static-x86_64-unknown-linux-musl
|
- name: Upload static artifacts
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: static-x86_64-unknown-linux-musl
|
name: ${{ matrix.target }}
|
||||||
path: result/bin/conduit
|
path: result/bin/conduit
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
|
|
||||||
- name: Upload artifact deb-x86_64-unknown-linux-musl
|
- name: Upload static deb artifacts
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: x86_64-unknown-linux-musl.deb
|
name: ${{ matrix.target }}.deb
|
||||||
path: target/debian/*.deb
|
path: target/debian/${{ matrix.target }}.deb
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
|
|
||||||
- name: Build static-x86_64-unknown-linux-musl-jemalloc and Create static deb-x86_64-unknown-linux-musl-jemalloc
|
|
||||||
|
- name: Build OCI images
|
||||||
run: |
|
run: |
|
||||||
./bin/nix-build-and-cache .#static-x86_64-unknown-linux-musl-jemalloc
|
./bin/nix-build-and-cache .#oci-image-${{ matrix.oci-target }}
|
||||||
mkdir -p target/release
|
cp -v -f result oci-image-${{ matrix.oci-target }}.tar.gz
|
||||||
cp -v -f result/bin/conduit target/release
|
|
||||||
direnv exec . cargo deb --no-build
|
|
||||||
|
|
||||||
- name: Upload artifact static-x86_64-unknown-linux-musl-jemalloc
|
- name: Upload OCI image artifacts
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: static-x86_64-unknown-linux-musl-jemalloc
|
name: oci-image-${{ matrix.oci-target }}
|
||||||
path: result/bin/conduit
|
path: oci-image-${{ matrix.oci-target }}.tar.gz
|
||||||
if-no-files-found: error
|
|
||||||
|
|
||||||
- name: Upload artifact deb-x86_64-unknown-linux-musl-jemalloc
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: x86_64-unknown-linux-musl-jemalloc.deb
|
|
||||||
path: target/debian/*.deb
|
|
||||||
if-no-files-found: error
|
|
||||||
|
|
||||||
- name: Build static-x86_64-unknown-linux-musl-hmalloc and Create static deb-x86_64-unknown-linux-musl-hmalloc
|
|
||||||
run: |
|
|
||||||
./bin/nix-build-and-cache .#static-x86_64-unknown-linux-musl-hmalloc
|
|
||||||
mkdir -p target/release
|
|
||||||
cp -v -f result/bin/conduit target/release
|
|
||||||
direnv exec . cargo deb --no-build
|
|
||||||
|
|
||||||
- name: Upload artifact static-x86_64-unknown-linux-musl-hmalloc
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: static-x86_64-unknown-linux-musl-hmalloc
|
|
||||||
path: result/bin/conduit
|
|
||||||
if-no-files-found: error
|
|
||||||
|
|
||||||
- name: Upload artifact deb-x86_64-unknown-linux-musl-hmalloc
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: x86_64-unknown-linux-musl-hmalloc.deb
|
|
||||||
path: target/debian/*.deb
|
|
||||||
if-no-files-found: error
|
|
||||||
|
|
||||||
|
|
||||||
- name: Build static-aarch64-unknown-linux-musl
|
|
||||||
run: |
|
|
||||||
./bin/nix-build-and-cache .#static-aarch64-unknown-linux-musl
|
|
||||||
|
|
||||||
- name: Upload artifact static-aarch64-unknown-linux-musl
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: static-aarch64-unknown-linux-musl
|
|
||||||
path: result/bin/conduit
|
|
||||||
if-no-files-found: error
|
|
||||||
|
|
||||||
- name: Build static-aarch64-unknown-linux-musl-jemalloc
|
|
||||||
run: |
|
|
||||||
./bin/nix-build-and-cache .#static-aarch64-unknown-linux-musl-jemalloc
|
|
||||||
|
|
||||||
- name: Upload artifact static-aarch64-unknown-linux-musl-jemalloc
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: static-aarch64-unknown-linux-musl-jemalloc
|
|
||||||
path: result/bin/conduit
|
|
||||||
if-no-files-found: error
|
|
||||||
|
|
||||||
- name: Build static-aarch64-unknown-linux-musl-hmalloc
|
|
||||||
run: |
|
|
||||||
./bin/nix-build-and-cache .#static-aarch64-unknown-linux-musl-hmalloc
|
|
||||||
|
|
||||||
- name: Upload artifact static-aarch64-unknown-linux-musl-hmalloc
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: static-aarch64-unknown-linux-musl-hmalloc
|
|
||||||
path: result/bin/conduit
|
|
||||||
if-no-files-found: error
|
|
||||||
|
|
||||||
|
|
||||||
- name: Build oci-image-x86_64-unknown-linux-gnu
|
|
||||||
run: |
|
|
||||||
./bin/nix-build-and-cache .#oci-image
|
|
||||||
cp -v -f result oci-image-amd64.tar.gz
|
|
||||||
|
|
||||||
- name: Upload artifact oci-image-x86_64-unknown-linux-gnu
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: oci-image-x86_64-unknown-linux-gnu
|
|
||||||
path: oci-image-amd64.tar.gz
|
|
||||||
if-no-files-found: error
|
|
||||||
# don't compress again
|
|
||||||
compression-level: 0
|
|
||||||
|
|
||||||
- name: Build oci-image-x86_64-unknown-linux-gnu-jemalloc
|
|
||||||
run: |
|
|
||||||
./bin/nix-build-and-cache .#oci-image-jemalloc
|
|
||||||
cp -v -f result oci-image-amd64.tar.gz
|
|
||||||
|
|
||||||
- name: Upload artifact oci-image-x86_64-unknown-linux-gnu-jemalloc
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: oci-image-x86_64-unknown-linux-gnu-jemalloc
|
|
||||||
path: oci-image-amd64.tar.gz
|
|
||||||
if-no-files-found: error
|
|
||||||
# don't compress again
|
|
||||||
compression-level: 0
|
|
||||||
|
|
||||||
- name: Build oci-image-x86_64-unknown-linux-gnu-hmalloc
|
|
||||||
run: |
|
|
||||||
./bin/nix-build-and-cache .#oci-image-hmalloc
|
|
||||||
cp -v -f result oci-image-amd64.tar.gz
|
|
||||||
|
|
||||||
- name: Upload artifact oci-image-x86_64-unknown-linux-gnu-hmalloc
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: oci-image-x86_64-unknown-linux-gnu-hmalloc
|
|
||||||
path: oci-image-amd64.tar.gz
|
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
# don't compress again
|
# don't compress again
|
||||||
compression-level: 0
|
compression-level: 0
|
||||||
|
|
||||||
|
|
||||||
- name: Build oci-image-aarch64-unknown-linux-musl
|
|
||||||
run: |
|
|
||||||
./bin/nix-build-and-cache .#oci-image-aarch64-unknown-linux-musl
|
|
||||||
cp -v -f result oci-image-arm64v8.tar.gz
|
|
||||||
|
|
||||||
- name: Upload artifact oci-image-aarch64-unknown-linux-musl
|
|
||||||
uses: actions/upload-artifact@v4
|
publish:
|
||||||
|
needs: build-and-test
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Download build environment
|
||||||
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: oci-image-aarch64-unknown-linux-musl
|
name: build-environment
|
||||||
path: oci-image-arm64v8.tar.gz
|
|
||||||
if-no-files-found: error
|
|
||||||
# don't compress again
|
|
||||||
compression-level: 0
|
|
||||||
|
|
||||||
- name: Build oci-image-aarch64-unknown-linux-musl-jemalloc
|
|
||||||
run: |
|
|
||||||
./bin/nix-build-and-cache .#oci-image-aarch64-unknown-linux-musl-jemalloc
|
|
||||||
cp -v -f result oci-image-arm64v8.tar.gz
|
|
||||||
|
|
||||||
- name: Upload artifact oci-image-aarch64-unknown-linux-musl-jemalloc
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: oci-image-aarch64-unknown-linux-musl-jemalloc
|
|
||||||
path: oci-image-arm64v8.tar.gz
|
|
||||||
if-no-files-found: error
|
|
||||||
# don't compress again
|
|
||||||
compression-level: 0
|
|
||||||
|
|
||||||
- name: Build oci-image-aarch64-unknown-linux-musl-hmalloc
|
|
||||||
run: |
|
|
||||||
./bin/nix-build-and-cache .#oci-image-aarch64-unknown-linux-musl-hmalloc
|
|
||||||
cp -v -f result oci-image-arm64v8.tar.gz
|
|
||||||
|
|
||||||
- name: Upload artifact oci-image-aarch64-unknown-linux-musl-hmalloc
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: oci-image-aarch64-unknown-linux-musl-hmalloc
|
|
||||||
path: oci-image-arm64v8.tar.gz
|
|
||||||
if-no-files-found: error
|
|
||||||
# don't compress again
|
|
||||||
compression-level: 0
|
|
||||||
|
|
||||||
|
|
||||||
- name: Extract metadata for Dockerhub
|
- name: Extract metadata for Dockerhub
|
||||||
env:
|
env:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue