Skip to content

Commit

Permalink
GHA: import improvements from base configuration
Browse files Browse the repository at this point in the history
- update actions/checkout v3 -> v4
- use older ci-core-dumper@node16 on CentOS 7
- add workflow_dispatch trigger
  • Loading branch information
ralphlange committed Dec 25, 2024
1 parent 58165ba commit a833d36
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci-scripts-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ on:
- '.gitattributes'
- '**/*.html'
- '**/*.md'
workflow_dispatch:

env:
SETUP_PATH: .ci-local:.ci
Expand Down Expand Up @@ -249,11 +250,15 @@ jobs:
# people would rather just break all existing scripts...
[ -e /usr/bin/python ] || ln -sf python3 /usr/bin/python
python --version
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true
- name: Automatic core dumper analysis
uses: mdavidsaver/ci-core-dumper@master
if: matrix.image!='centos:7'
- name: Automatic core dumper analysis
uses: mdavidsaver/ci-core-dumper@node16
if: matrix.image=='centos:7'
- name: Prepare and compile dependencies
run: python .ci/cue.py prepare
- name: Build main module
Expand Down

0 comments on commit a833d36

Please sign in to comment.