We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 054ca78 commit 247f695Copy full SHA for 247f695
.github/workflows/pull_request.yml
@@ -95,6 +95,9 @@ jobs:
95
if [[ ! -z "${{ matrix.arch }}" ]]; then
96
ARTIFACT_NAME="${ARTIFACT_NAME}-$(echo ${{ matrix.arch }} | tr ',' '-')"
97
fi
98
+ if [[ "${{ matrix.build-type }}" == 'local' ]]; then
99
+ ARTIFACT_NAME="${ARTIFACT_NAME}-$(echo ${{ matrix.arch }} | tr ',' '-')-local"
100
+ fi
101
ARTIFACT_NAME="${ARTIFACT_NAME}${ARTIFACT_EXT}"
102
103
# There is no way to prevent even a single-file artifact from being zipped:
swift-ci/sdks/android/Dockerfile
@@ -41,6 +41,7 @@ RUN apt-get -q update \
41
libpython3-dev \
42
libsqlite3-dev \
43
libxml2-dev \
44
+ rsync \
45
uuid-dev \
46
uuid-runtime \
47
tzdata \
0 commit comments