Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
fi
CONDA_SUBDIR=${{ matrix.target_arch }} constructor . --platform="${{ matrix.target_arch }}" --conda-exe="${CONDA_STANDALONE_PATH}"
- name: Upload installer
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: installer-${{ matrix.target_arch }}
path: DIRACOS-*.sh
Expand All @@ -67,7 +67,7 @@ jobs:
target_arch: ["linux-64"]
steps:
- name: Download installer
uses: actions/download-artifact@v4
uses: actions/download-artifact@v3
with:
name: installer-${{ matrix.target_arch }}
- name: Generate environment.yaml
Expand All @@ -76,7 +76,7 @@ jobs:
source diracos/diracosrc
conda env export --file environment.yaml --prefix $DIRACOS
- name: Upload environment.yaml
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: environment-yaml-${{ matrix.target_arch }}
path: |
Expand All @@ -93,7 +93,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Download artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v3
with:
path: artifacts
- name: Prepare environment
Expand All @@ -108,7 +108,7 @@ jobs:
> release-notes.md
cat release-notes.md
- name: Upload release-notes.md
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: release-notes
path: |
Expand All @@ -128,7 +128,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Download installer
uses: actions/download-artifact@v4
uses: actions/download-artifact@v3
with:
name: installer-linux-64
- name: Run tests
Expand All @@ -146,7 +146,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Download installer
uses: actions/download-artifact@v4
uses: actions/download-artifact@v3
with:
name: installer-osx-64
- name: Run tests
Expand All @@ -168,7 +168,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Download installer
uses: actions/download-artifact@v4
uses: actions/download-artifact@v3
with:
name: installer-osx-arm64
- name: Run tests
Expand All @@ -195,7 +195,7 @@ jobs:
with:
python-version: '3.9'
- name: Download installer
uses: actions/download-artifact@v4
uses: actions/download-artifact@v3
with:
name: installer-linux-64
- name: Prepare environment
Expand Down
3 changes: 1 addition & 2 deletions construct.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,7 @@ specs:
- stomp.py >8
# Middleware
- apache-libcloud >=3.5.1
# https://github.com/aws/aws-cli/issues/9214
- boto3 <1.36
- boto3 >=1.5.11
- gfal2 >=2.20.5
- gfal2-util >=1.7.1
- fts3 >=3.12
Expand Down
Loading