Skip to content

Commit

Permalink
Update Error message in autogen
Browse files Browse the repository at this point in the history
Also, updated the github actions/checkout version to v4
  • Loading branch information
kholland-intel committed Nov 16, 2023
1 parent ce94209 commit 5d2d42a
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ jobs:
- name: Checking OS version
run: |
echo "OS_NAME=$(lsb_release -si)-$(ls_release -sr)" >> $GITHUB_ENV
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: Install dependencies
Expand All @@ -163,13 +163,13 @@ jobs:
# LIBFABRIC
- name: Cache libfabric install
id: cache-libfabric
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ${{ env.LIBFABRIC_INSTALL_DIR }}
key: libfabric-${{ matrix.libfabric_version }}-${{ env.OS_NAME }}
- name: Checkout libfabric
if: steps.cache-libfabric.outputs.cache-hit != 'true'
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: ofiwg/libfabric
path: repos/libfabric
Expand All @@ -188,13 +188,13 @@ jobs:
- name: Cache XPMEM install
if: ${{ matrix.xpmem_version }}
id: cache-xpmem
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ${{ env.XPMEM_INSTALL_DIR }}
key: xpmem-${{ matrix.xpmem_version }}-${{ env.OS_NAME }}
- name: Checkout XPMEM
if: ${{ matrix.xpmem_version }}
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: hjelmn/xpmem
path: repos/xpmem
Expand Down Expand Up @@ -485,7 +485,7 @@ jobs:
- name: Checking OS version
run: |
echo "OS_NAME=$(lsb_release -si)-$(ls_release -sr)" >> $GITHUB_ENV
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: Install dependencies
Expand All @@ -496,7 +496,7 @@ jobs:
# XPMEM
- name: Checkout XPMEM
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: hjelmn/xpmem
path: repos/xpmem
Expand All @@ -515,13 +515,13 @@ jobs:
# UCX
- name: Cache UCX install
id: cache-ucx
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ${{ env.UCX_INSTALL_DIR }}
key: ucx-${{ matrix.ucx_version}}-${{ env.OS_NAME }}
- name: Checkout UCX
if: steps.cache-ucx.outputs.cache-hit != 'true'
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: openucx/ucx
path: repos/ucx
Expand Down Expand Up @@ -577,7 +577,7 @@ jobs:
- name: Checking OS version
run: |
echo "OS_NAME=$(lsb_release -si)-$(ls_release -sr)" >> $GITHUB_ENV
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: Install dependencies
Expand All @@ -588,7 +588,7 @@ jobs:
# XPMEM
- name: Checkout XPMEM
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: hjelmn/xpmem
path: repos/xpmem
Expand All @@ -607,13 +607,13 @@ jobs:
# Portals4
- name: Cache Portals4 install
id: cache-portals4
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ${{ env.PORTALS4_INSTALL_DIR }}
key: portals4-${{ matrix.portals4_version}}-${{ env.OS_NAME }}
- name: Checkout Portals4
if: steps.cache-portals4.outputs.cache-hit != 'true'
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: regrant/portals4
path: repos/portals4
Expand Down Expand Up @@ -656,7 +656,7 @@ jobs:
- name: Checking OS version
run: |
echo "OS_NAME=$(lsb_release -si)-$(ls_release -sr)" >> $GITHUB_ENV
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: Install dependencies
Expand All @@ -667,7 +667,7 @@ jobs:
# XPMEM
- name: Checkout XPMEM
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: hjelmn/xpmem
path: repos/xpmem
Expand Down
2 changes: 1 addition & 1 deletion autogen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

test -d ./config || mkdir ./config

test -f modules/test-sos/configure.ac || { echo -n "WARNING: The test directory is empty. Please run the following command to install the SOS tests:\ngit submodule update --init"; }
test -f modules/test-sos/configure.ac || { echo "ERROR: The test directory is empty. Please run the following command to install the SOS tests:"; echo "git submodule update --init"; exit 1; }

FILES=./man/*.1
echo -n "dist_man1_MANS =" > ./man/Makefile.am
Expand Down

0 comments on commit 5d2d42a

Please sign in to comment.