Skip to content

Separated CI/CD pipeline to parallel architecture build stage and optional version creation stage #22

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .github/workflows/pr-pipeline.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: gdb-static-pr-pipeline

on:
pull_request:
branches:
- '*'

jobs:
build:
strategy:
matrix:
architecture: ["x86_64", "arm", "aarch64", "powerpc", "mips", "mipsel"]

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Install dependencies
run: sudo apt-get install -y wget

- name: Build
run: make build-${{ matrix.architecture }} -j$((`nproc`+1))
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
name: gdb-static-pipeline
name: gdb-static-release-pipeline

on:
pull_request:
branches:
- '*'
push:
tags:
- 'v*'

# Use a non-parallel single job pipeline because artifacts weigh too much. Instead,
# simply build the files in the same job they are released.
jobs:
build:
build_and_publish:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
Expand All @@ -26,14 +24,7 @@ jobs:
- name: Pack
run: make pack

- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: gdb-static
path: build/artifacts/gdb-static*.tar.gz

- name: Publish release
if: github.event_name == 'push'
uses: softprops/action-gh-release@v2
with:
files: build/artifacts/gdb-static*.tar.gz
files: build/artifacts/gdb-static*.tar.gz
2 changes: 1 addition & 1 deletion src/compilation/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ function set_compliation_variables() {
CROSS=mipsel-linux-gnu-
export HOST=mipsel-linux-gnu
elif [[ "$target_arch" == "x86_64" ]]; then
CROSS=""
CROSS=x86_64-linux-gnu-
export HOST=x86_64-linux-gnu
fi

Expand Down
Loading