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

ci: update image_url for build to 1.0.23 #88

Merged
merged 4 commits into from
Nov 4, 2024
Merged
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
14 changes: 8 additions & 6 deletions .github/workflows/poudriere.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ jobs:
with:
operating_system: freebsd
version: '14.1'
image_url: https://github.com/trombik/freebsd-builder-poudriere/releases/download/v1.0.7/freebsd-14.1-x86-64.qcow2
image_url: https://github.com/trombik/freebsd-builder-poudriere/releases/download/v1.0.23/freebsd-14.1-x86-64.qcow2
sync_files: true
run: |
set -x
Expand Down Expand Up @@ -200,7 +200,7 @@ jobs:
# packages and ccache cache might help future builds.

# allow MAX_JOBS in ports which take longer to build
echo ALLOW_MAKE_JOBS_PACKAGES="\"cmake-core-* esp-llvm-embedded-toolchain-* rust-esp-* xtensa-esp32-elf-* xtensa-esp-elf-* riscv32-esp-elf-*\"" | sudo tee -a /usr/local/etc/poudriere.conf
echo ALLOW_MAKE_JOBS_PACKAGES="\"rust rust-nightly cmake-core-* esp-llvm-embedded-toolchain-* rust-esp* xtensa-esp32-elf-* xtensa-esp-elf-* riscv32-esp-elf-*\"" | sudo tee -a /usr/local/etc/poudriere.conf

# disable a logic to find out build failure. takes too much time
# and disk space
Expand Down Expand Up @@ -318,6 +318,9 @@ jobs:
name: logs-${{ env.SAFE_PORT_NAME }}
path: logs/

# overwrite artifact if exists. this enables failed job to run again
overwrite: true

- name: rename packages.built to packages
if: success() || failure()
shell: sh
Expand All @@ -329,18 +332,17 @@ jobs:

- name: upload packages
id: packages-upload-step

# if the outcome is failure `packages` directory contains compressed
# zip files. do not upload them.
if: ${{ steps.download-packages.outcome == 'success' }} && ( success() || failure() )
if: success() || failure()
uses: actions/upload-artifact@v4
with:
name: packages-${{ env.SAFE_PORT_NAME }}
path: packages/
overwrite: true

- name: upload ccache cache
if: success() || failure()
uses: actions/upload-artifact@v4
with:
name: ccache-${{ env.SAFE_PORT_NAME }}
path: ccache
overwrite: true
Loading