Skip to content

Commit

Permalink
workflows: fix centos 7 checkout
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick Stephens <[email protected]>
  • Loading branch information
patrick-stephens committed Dec 19, 2024
1 parent 0ab6ea6 commit 22b9190
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,24 @@ jobs:
yum install -y cmake3
shell: bash

- uses: actions/checkout@v4
- name: Clone repo without submodules (1.8.3 version of Git)
run: |
git clone https://github.com/fluent/cfl.git
shell: bash

- name: Check out the branch (1.8.3 version of Git)
env:
BRANCH_NAME: ${{ github.head_ref }}
run: |
git checkout "$BRANCH_NAME"
shell: bash
working-directory: cfl

- name: Run compilation
run: |
cmake3 -DCFL_DEV=on .
make
working-directory: cfl/build

build-debian:
name: Debian Buster build to confirm no issues once used downstream
Expand Down

0 comments on commit 22b9190

Please sign in to comment.