Skip to content

Commit

Permalink
ci: Add workflow to test mac upload-artifact issue
Browse files Browse the repository at this point in the history
  • Loading branch information
camscale committed Apr 30, 2024
1 parent 6e9bc6a commit db5538a
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/mac-upload-artifact.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Reproduce Mac upload-artifact failure
on:
push:
branches:
- camh/repro-mac-upload-artifact-issue

jobs:
test-upload-artifact:
runs-on: macos-13-xl-arm64
steps:
- name: Create files (500MiB)
run: |
dd if=/dev/urandom of=artifact bs=1M count=500
dd if=/dev/zero of=artifact-unsigned bs=1M count=1
- name: upload artifact
uses: actions/upload-artifact@v4
with:
name: urandom
compression-level: 0
retention-days: 1
path: |
artifact
!*-unsigned*

0 comments on commit db5538a

Please sign in to comment.