Skip to content

Commit

Permalink
Merge pull request #281 from ndw/master
Browse files Browse the repository at this point in the history
Fixes to the CI build
  • Loading branch information
ndw authored Nov 11, 2024
2 parents b0c9780 + fa543fc commit 7293a89
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/build-prs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
tag: ${{ steps.check_step.outputs.tag }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:

steps:
- name: Get the pull request
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}

Expand All @@ -63,7 +63,7 @@ jobs:
rsync -ar ./src/ /tmp/pr-sources/
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Update sources
run: rsync -var /tmp/pr-sources/ ./src/
Expand All @@ -75,7 +75,12 @@ jobs:
- name: Setup DeltaXML
if: ${{ env.AUTODIFF == 'true' }}
run: |
curl -s ${{ secrets.DIFFURI }} | openssl enc -aes-256-cbc -salt -pbkdf2 -d -k ${{ secrets.DIFFPW }} | tar zxf -
cd tools && curl -s ${{ secrets.DIFFURI }} | openssl enc -aes-256-cbc -salt -pbkdf2 -d -k ${{ secrets.DIFFPW }} | tar zxf -
- name: Look around
run: |
ls
ls tools
- name: Make DeltaXML diffs
if: ${{ env.AUTODIFF == 'true' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-specs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
- name: Setup DeltaXML
if: ${{ env.AUTODIFF == 'true' }}
run: |
curl -s ${{ secrets.DIFFURI }} | openssl enc -aes-256-cbc -salt -pbkdf2 -d -k ${{ secrets.DIFFPW }} | tar zxf -
cd tools && curl -s ${{ secrets.DIFFURI }} | openssl enc -aes-256-cbc -salt -pbkdf2 -d -k ${{ secrets.DIFFPW }} | tar zxf -
- name: Make DeltaXML diffs
if: ${{ env.AUTODIFF == 'true' }}
Expand Down

0 comments on commit 7293a89

Please sign in to comment.