Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
Actor Framework
Commits
2b5ac8c1
Commit
2b5ac8c1
authored
Jun 13, 2023
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Limit Cirrus/GH to master commits and PRs
parent
d5113840
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
2 deletions
+12
-2
.cirrus.yml
.cirrus.yml
+10
-0
.github/workflows/check-formatting.yml
.github/workflows/check-formatting.yml
+1
-1
.github/workflows/check-typos.yml
.github/workflows/check-typos.yml
+1
-1
No files found.
.cirrus.yml
View file @
2b5ac8c1
...
...
@@ -4,14 +4,22 @@ resources_template: &RESOURCES_TEMPLATE
cpu
:
4
memory
:
16GB
# Run only when pushing to master and in PRs.
branch_filter
:
&BRANCH_FILTER
only_if
:
>
$CIRRUS_PR != '' ||
$CIRRUS_BRANCH == 'master'
debug_build_template
:
&DEBUG_BUILD_TEMPLATE
build_script
:
.ci/run.sh build .ci/debug-flags.cmake . build
test_script
:
.ci/run.sh test build
<<
:
*BRANCH_FILTER
asan_build_template
:
&ASAN_BUILD_TEMPLATE
build_script
:
.ci/run.sh build .ci/asan-flags.cmake . build
# The OpenSSL tests currently report memory leaks, see GH issue #1396.
test_script
:
.ci/run.sh test build openssl
<<
:
*BRANCH_FILTER
# CentOS 7 EOL: June 2024
centos7_task
:
...
...
@@ -56,6 +64,7 @@ freebsd13_task:
# << : *DEBUG_BUILD_TEMPLATE
build_script
:
.ci/run.sh build .ci/debug-flags.cmake . build
test_script
:
.ci/run.sh test build net.udp_datagram_socket
<<
:
*BRANCH_FILTER
# Fedora 38 EOL: May 2024
sanitizers_task
:
...
...
@@ -74,3 +83,4 @@ windows_task:
<<
:
*RESOURCES_TEMPLATE
build_script
:
.ci/windows/build.cmd
test_script
:
.ci/windows/test.cmd
<<
:
*BRANCH_FILTER
.github/workflows/check-formatting.yml
View file @
2b5ac8c1
name
:
check-formatting
on
:
[
pu
sh
,
pu
ll_request
]
on
:
[
pull_request
]
jobs
:
formatting
:
runs-on
:
ubuntu-latest
...
...
.github/workflows/check-typos.yml
View file @
2b5ac8c1
name
:
check-typos
on
:
[
pu
sh
,
pu
ll_request
]
on
:
[
pull_request
]
jobs
:
typos
:
runs-on
:
ubuntu-latest
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment