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

Smaller CI intermediate tarballs (option 1) #374

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/bwrap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
name: packages
path: tmp/external/repo/**
- name: Tar pass1 image
run: tar -cf pass1_image.tar tmp
run: tar -cf pass1_image.tar --exclude "tmp/external/distfiles" tmp
- name: Archive pass1_image
uses: actions/upload-artifact@v3
with:
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
name: internal_packages_pass2
path: tmp/external/repo/**
- name: Tar pass2 image
run: tar -cf pass2_image.tar tmp
run: tar -cf pass2_image.tar --exclude "tmp/external/distfiles" tmp
- name: Archive pass2_image
uses: actions/upload-artifact@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion steps/manifest
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ build: grep-3.7
build: sed-4.8
build: autogen-5.18.16
build: musl-1.2.4
jump: break ( INTERNAL_CI == pass1 ) # scripts are generated in pass1
build: python-2.0.1
build: python-2.0.1
build: python-2.3.7
Expand All @@ -175,7 +176,6 @@ build: python-3.3.7
build: python-3.4.10
build: python-3.8.16
build: python-3.11.1
jump: break ( INTERNAL_CI == pass1 ) # scripts are generated in pass1
build: gcc-10.4.0
build: binutils-2.41
build: gcc-13.1.0
Expand Down