forked from HDFGroup/hdf5
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
11 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,9 +16,16 @@ jobs: | |
name: "julia ${{ inputs.build_mode }}" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Get Sources | ||
- name: Check out HDF5 source | ||
uses: actions/[email protected] | ||
|
||
# Checking out the Julia HDF5 wrappers will clobber the HDF5 checkout | ||
- name: Save the Julia patch file | ||
shell: bash | ||
run: | | ||
mkdir "${{ runner.workspace }}/julia_patch" | ||
cp .github/workflows/julia_ci.patch julia_patch/ | ||
- name: Install Dependencies | ||
shell: bash | ||
run: | | ||
|
@@ -31,10 +38,6 @@ jobs: | |
- name: Autotools Configure | ||
shell: bash | ||
run: | | ||
echo " -- HDF5 PWD -----------------" | ||
echo $PWD | ||
sh ./autogen.sh | ||
mkdir "${{ runner.workspace }}/build" | ||
cd "${{ runner.workspace }}/build" | ||
|
@@ -73,6 +76,8 @@ jobs: | |
run: | | ||
echo " -- Julia PWD -----------------" | ||
echo $PWD | ||
echo "-- GITHUB_WORKSPACE -----------" | ||
echo $GITHUB_WORKSPACE | ||
echo | ||
echo " -- ls -----------------" | ||
|
@@ -90,7 +95,7 @@ jobs: | |
echo " -- ls ../hdf5 -----------------" | ||
ls ../hdf5 | ||
git apply $GITHUB_WORKSPACE/.github/workflows/julia_ci.patch -v | ||
git apply $GITHUB_WORKSPACE/julia_patch/julia_ci.patch -v | ||
- name: Generate LocalPreferences | ||
run: | | ||
|