Skip to content

Commit

Permalink
draft: debug
Browse files Browse the repository at this point in the history
  • Loading branch information
fkrause98 committed Jan 7, 2025
1 parent 84a3e44 commit 5662fb6
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions .github/workflows/daily_reports.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,10 @@ jobs:
features: ["default", "levm"]
steps:
- uses: actions/checkout@v4
# - name: Build ethrex image with features ${{ matrix.features }}
# run: docker build -t ethrex:${{ matrix.features }} --build-arg BUILD_FLAGS="--features ${{ matrix.features }}" .
- name: Build ethrex image with features ${{ matrix.features }}
run: docker build -t ethrex:${{ matrix.features }} --build-arg BUILD_FLAGS="--features ${{ matrix.features }}" .
- name: Save image
# docker save ethrex:${{ matrix.features }} > ${{ matrix.features }}-image.tar
run: |
touch ${{ matrix.features }}-image.tar
run: docker save ethrex:${{ matrix.features }} > ${{ matrix.features }}-image.tar
- uses: actions/upload-artifact@v4
with:
name: ethrex-image-${{ matrix.features }}
Expand Down Expand Up @@ -55,14 +53,14 @@ jobs:
name: ethrex-image-${{ matrix.image }}
path: images

- name: Debug images folder
run: echo $(ls images)

- name: Checkout sources
uses: actions/checkout@v4

- name: Debug images folder
run: echo $(ls images)

- name: Load image for ethrex build (${{ matrix.image }} feature set)
run: docker load < images/ethrex-image-${{matrix.image}}
run: docker load < images/${{matrix.image}}-image.tar

- name: Setup Go
uses: actions/setup-go@v5
Expand Down

0 comments on commit 5662fb6

Please sign in to comment.