Skip to content

Commit

Permalink
Aha, it clobbers
Browse files Browse the repository at this point in the history
  • Loading branch information
derobins committed Oct 23, 2024
1 parent 2f0f0bf commit 90beae9
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/julia-auto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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"
Expand Down Expand Up @@ -73,6 +76,8 @@ jobs:
run: |
echo " -- Julia PWD -----------------"
echo $PWD
echo "-- GITHUB_WORKSPACE -----------"
echo $GITHUB_WORKSPACE
echo
echo " -- ls -----------------"
Expand All @@ -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: |
Expand Down

0 comments on commit 90beae9

Please sign in to comment.