-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cc68d51
commit 262ad08
Showing
3 changed files
with
39 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,12 @@ name: CI Linux | |
on: | ||
workflow_call: | ||
workflow_dispatch: | ||
inputs: | ||
debug_enabled: | ||
type: boolean | ||
description: 'Run the build with tmate debugging enabled' | ||
required: false | ||
default: false | ||
pull_request: | ||
merge_group: | ||
push: | ||
|
@@ -51,8 +57,9 @@ jobs: | |
|
||
- name: Install deps | ||
run: | | ||
dnf install -y almalinux-release-devel epel-release | ||
yum remove -y openssl-devel zlib-devel || true | ||
yum install -y protobuf-devel protobuf-compiler | ||
yum install -y protobuf-devel protobuf-compiler tmate | ||
- name: Sync source deps | ||
run: | | ||
|
@@ -95,6 +102,13 @@ jobs: | |
path: ${{ env.CACHE_DIR }} | ||
key: ${{ env.CACHE_KEY }} | ||
|
||
- name: Setup tmate session | ||
if: ${{ failure() }} | ||
uses: mxschmitt/[email protected] | ||
with: | ||
limit-access-to-actor: true | ||
install-dependencies: false | ||
|
||
test_linux: | ||
name: E2E Test linux | ||
needs: build_and_ctest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,12 @@ name: CI MacOS | |
on: | ||
workflow_call: | ||
workflow_dispatch: | ||
inputs: | ||
debug_enabled: | ||
type: boolean | ||
description: 'Run the build with tmate debugging enabled' | ||
required: false | ||
default: false | ||
pull_request: | ||
merge_group: | ||
push: | ||
|
@@ -89,3 +95,9 @@ jobs: | |
with: | ||
path: ${{ env.CACHE_DIR }} | ||
key: ${{ env.CACHE_KEY }} | ||
|
||
- name: Setup tmate session | ||
if: ${{ failure() }} | ||
uses: mxschmitt/[email protected] | ||
with: | ||
limit-access-to-actor: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,12 @@ name: CI Windows | |
on: | ||
workflow_call: | ||
workflow_dispatch: | ||
inputs: | ||
debug_enabled: | ||
type: boolean | ||
description: 'Run the build with tmate debugging enabled' | ||
required: false | ||
default: false | ||
pull_request: | ||
merge_group: | ||
push: | ||
|
@@ -98,6 +104,12 @@ jobs: | |
path: ${{ env.CACHE_DIR }} | ||
key: ${{ env.CACHE_KEY }} | ||
|
||
- name: Setup tmate session | ||
if: ${{ failure() && inputs.debug_enabled }} | ||
uses: mxschmitt/[email protected] | ||
with: | ||
limit-access-to-actor: true | ||
|
||
test_windows: | ||
name: E2E Test windows | ||
runs-on: windows-phoenix | ||
|