Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refine Github action artifacts #35

Merged
merged 1 commit into from
Sep 14, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/build_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: linux_elf
path: adamant_example/src/assembly/linux/main/build/bin/Linux/main.elf
path: ${{ github.workspace }}/adamant_example/src/assembly/linux/main/build/bin/Linux/main.elf
if-no-files-found: error
- run: echo "Finished with status - ${{ job.status }}."
4 changes: 2 additions & 2 deletions .github/workflows/build_pico.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
with:
name: pico_elf
path: |
adamant_example/src/assembly/pico/main/build/bin/Pico/main.elf
adamant_example/src/assembly/pico/main/build/bin/Pico/main.uf2
${{ github.workspace }}/adamant_example/src/assembly/pico/main/build/bin/Pico/main.elf
${{ github.workspace }}/adamant_example/src/assembly/pico/main/build/bin/Pico/main.uf2
if-no-files-found: error
- run: echo "Finished with status - ${{ job.status }}."
2 changes: 1 addition & 1 deletion .github/workflows/publish_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
workflow_dispatch:
jobs:
compile_job:
name: test_all
name: publish_all
runs-on: ubuntu-latest
container:
image: ghcr.io/lasp/adamant_example:latest
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/style_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ jobs:
if: always()
uses: actions/upload-artifact@v4
with:
name: failed_style_logs
path: adamant_example/build/failed_style_logs
name: style_logs
path: ${{ github.workspace }}/adamant_example/build
if-no-files-found: ignore
- run: echo "Finished with status - ${{ job.status }}."
if: always()
4 changes: 2 additions & 2 deletions .github/workflows/test_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ jobs:
if: always()
uses: actions/upload-artifact@v4
with:
name: failed_test_logs
path: adamant_example/build/failed_test_logs
name: test_logs
path: ${{ github.workspace }}/adamant_example/build
if-no-files-found: ignore
- run: echo "Finished with status - ${{ job.status }}."
if: always()