File tree Expand file tree Collapse file tree 1 file changed +27
-5
lines changed
Expand file tree Collapse file tree 1 file changed +27
-5
lines changed Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ name: mirror-archive-on-merge-to-default-branch
22
33on :
44 push :
5- branches :
6- - master
5+ # branches:
6+ # - master
77
88jobs :
99 mirror-archive :
1212 BUCKET : attack-range-attack-data
1313 ATTACK_DATA_ARCHIVE_FILE : attack_data.tar.zstd
1414 steps :
15+
16+ # Use the following GitHub Action to free up disk space on a runner
17+ # This removes dependencies and packages that may be important to many
18+ # GitHub users, such as the Android and dotnet build tools, but are
19+ # not relevant to us
20+ # https://github.com/marketplace/actions/free-disk-space-ubuntu
21+ - name : Free Disk Space (Ubuntu)
22+ uses : jlumbroso/free-disk-space1.3.1
23+ with :
24+ # this might remove tools that are actually needed,
25+ # if set to "true" but frees about 6 GB
26+ tool-cache : false
27+
28+ # all of these default to true, but feel free to set to
29+ # "false" if necessary for your workflow
30+ android : true
31+ dotnet : true
32+ haskell : true
33+ large-packages : true
34+ docker-images : true
35+ # swap-storage: true
36+
1537 - name : Checkout Repo
1638 uses : actions/checkout@v4
1739 # We must EXPLICITLY specificy lfs: true. It defaults to false
4062 # File size reductions are diminishing returns after this - determined experimentally.
4163 tar -c attack_data | zstd --compress -T0 -10 -o $ATTACK_DATA_ARCHIVE_FILE
4264
43- - name : Upload Attack data archive file to S3 Bucket
44- run : |
45- aws s3 cp $ATTACK_DATA_ARCHIVE_FILE s3://$BUCKET/
65+ # - name: Upload Attack data archive file to S3 Bucket
66+ # run: |
67+ # aws s3 cp $ATTACK_DATA_ARCHIVE_FILE s3://$BUCKET/
You can’t perform that action at this time.
0 commit comments