Skip to content
Merged
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
160 changes: 0 additions & 160 deletions .github/workflows/build-corsika-simtel-legacy.yml

This file was deleted.

29 changes: 29 additions & 0 deletions .github/workflows/build-sim_telarray.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,32 @@ env:
IMAGE_NAME: ${{ github.repository }}
CLOUD_URL: "https://syncandshare.desy.de/index.php/s/"

permissions:
contents: read

jobs:
download-auxiliary-files:
runs-on: ubuntu-latest

steps:
- name: download-auxiliary-files
run: |
curl -L --fail \
--retry 5 --retry-delay 10 --retry-connrefused \
--connect-timeout 30 \
"${{ env.CLOUD_URL }}/${{ secrets.CLOUD_GSL }}/download" \
-o gsl.tar.gz
- name: upload-auxiliary-files
uses: actions/upload-artifact@v7
with:
name: upload-auxiliary-files
path: |
gsl.tar.gz
retention-days: 1

build-sim_telarray:
runs-on: ubuntu-latest
needs: [download-auxiliary-files]
permissions:
contents: read
packages: write
Expand All @@ -36,6 +59,12 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v6

- name: Download auxiliary files
uses: actions/download-artifact@v8
with:
name: upload-auxiliary-files
path: .

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4

Expand Down
174 changes: 0 additions & 174 deletions .github/workflows/build-simtools-legacy.yml

This file was deleted.

Loading
Loading