Skip to content
Open
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
4 changes: 0 additions & 4 deletions .github/workflows/.beman_submodule

This file was deleted.

1 change: 0 additions & 1 deletion .github/workflows/.github/CODEOWNERS

This file was deleted.

230 changes: 0 additions & 230 deletions .github/workflows/LICENSE

This file was deleted.

85 changes: 0 additions & 85 deletions .github/workflows/README.md

This file was deleted.

20 changes: 13 additions & 7 deletions .github/workflows/ci_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ on:

jobs:
beman-submodule-check:
uses: ./.github/workflows/reusable-beman-submodule-check.yml
uses: bemanproject/infra-workflows/.github/workflows/reusable-beman-submodule-check.yml@1.2.1

preset-test:
uses: ./.github/workflows/reusable-beman-preset-test.yml
uses: bemanproject/infra-workflows/.github/workflows/reusable-beman-preset-test.yml@1.2.1
with:
matrix_config: >
[
Expand All @@ -31,7 +31,7 @@ jobs:
]

build-and-test:
uses: ./.github/workflows/reusable-beman-build-and-test.yml
uses: bemanproject/infra-workflows/.github/workflows/reusable-beman-build-and-test.yml@1.2.1
with:
matrix_config: >
{
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
}
],
"clang": [
{ "versions": ["20"],
{ "versions": ["21"],
"tests": [
{"cxxversions": ["c++26"],
"tests": [
Expand All @@ -82,7 +82,7 @@ jobs:
}
]
},
{ "versions": ["19"],
{ "versions": ["20", "19"],
"tests": [
{ "cxxversions": ["c++26", "c++23"],
"tests": [
Expand All @@ -93,7 +93,7 @@ jobs:
},
{ "versions": ["18"],
"tests": [
{ "cxxversions": ["c++26", "c++23"],
{ "cxxversions": ["c++23"],
"tests": [{"stdlibs": ["libstdc++"], "tests": ["Release.Default"]}]
}
]
Expand Down Expand Up @@ -123,7 +123,13 @@ jobs:
]
}

install-test:
uses: bemanproject/infra-workflows/.github/workflows/[email protected]
with:
image: ghcr.io/bemanproject/infra-containers-gcc:latest
cxx_standard: 26

create-issue-when-fault:
needs: [preset-test, build-and-test]
if: failure() && github.event_name == 'schedule'
uses: ./.github/workflows/reusable-beman-create-issue-when-fault.yml
uses: bemanproject/infra-workflows/.github/workflows/reusable-beman-create-issue-when-fault.yml@1.2.1
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ on:

jobs:
pre-commit:
uses: ./.github/workflows/reusable-beman-pre-commit.yml
uses: bemanproject/infra-workflows/.github/workflows/reusable-beman-pre-commit.yml@1.2.1
Loading