Skip to content
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

Add proof-producer-debug-gcc check in CI #203

Merged
merged 6 commits into from
Dec 16, 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
23 changes: 23 additions & 0 deletions .github/workflows/gcc-debug-proof-producer-nix-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build and run on Linux Platforms

on:
workflow_call:

jobs:
build-and-run:
name: "Build proof-producer binary in debug mode"
runs-on: [self-hosted, Linux, X64, aws_autoscaling]
steps:
# https://github.com/actions/checkout/issues/1552
- name: Clean up after previous checkout
run: chmod +w -R ${GITHUB_WORKSPACE}; rm -rf ${GITHUB_WORKSPACE}/*;

- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Build and run proof-producer in debug mode
run: |
nix run .#multi-threaded -- --help
nix run .#single-threaded -- --help
7 changes: 7 additions & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@ jobs:
always() && !cancelled()
secrets: inherit

test-linux-proof-producer-debug-gcc:
name: Gcc debug proof-producer Linux testing
uses: ./.github/workflows/gcc-debug-proof-producer-nix-check.yml
if: |
always() && !cancelled()
secrets: inherit

post-telemetry:
name: Post test results in Open Telemetry format
runs-on: [self-hosted, Linux, X64, aws_autoscaling]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ concurrency:

jobs:
test-linux-gcc:
name: Linux placeholder testing with gcc
name: Gcc release full Linux testing
uses: ./.github/workflows/gcc-linux-nix-check.yml
if: |
always() && !cancelled()
secrets: inherit

test-linux-clang:
name: Linux placeholder testing with clang
name: Clang release full Linux testing
uses: ./.github/workflows/clang-linux-nix-check.yml
if: |
always() && !cancelled()
Expand Down
Loading