Skip to content

Commit 9cccfe2

Browse files
committed
Update release notes and comment out failing tests that won't be fixed
1 parent d935238 commit 9cccfe2

File tree

2 files changed

+32
-25
lines changed

2 files changed

+32
-25
lines changed

ci/release_notes.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
### Improvements
22

33
- Built resource image on top of Alpine 3.21.3
4-
- Added new Concourse tests on version families `3.3`, and `3.4`
4+
5+
### Caveat
6+
7+
This Concourse resource does not support version families `3.3` and `3.4`, now that souce code tarballs are no more shipped as they were before.
8+
9+
As these are now [released on GitHub][openssl_gh], you may use the `github-release` resource instead.
10+
11+
[openssl_gh]: https://github.com/openssl/openssl/releases

ci/settings.yml

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -302,37 +302,37 @@ jobs:
302302
303303
304304
305-
version_family="3.3"
305+
# version_family="3.3"
306306
307-
latest_version_json=$(
308-
jq --null-input \
309-
--arg "family" "${version_family}" \
310-
'{ "source": { "family": $family } }' \
311-
| /opt/resource/check
312-
)
313-
latest_version=$(jq --raw-output '.[0].version' <<< "${latest_version_json}")
307+
# latest_version_json=$(
308+
# jq --null-input \
309+
# --arg "family" "${version_family}" \
310+
# '{ "source": { "family": $family } }' \
311+
# | /opt/resource/check
312+
# )
313+
# latest_version=$(jq --raw-output '.[0].version' <<< "${latest_version_json}")
314314
315-
if [[ ${latest_version} != ${version_family}* ]]; then
316-
echo >&2 "FAIL: expected version to start with '${version_family}', but got '${latest_version}'."
317-
failure="true"
318-
fi
315+
# if [[ ${latest_version} != ${version_family}* ]]; then
316+
# echo >&2 "FAIL: expected version to start with '${version_family}', but got '${latest_version}'."
317+
# failure="true"
318+
# fi
319319
320320
321321
322-
version_family="3.4"
322+
# version_family="3.4"
323323
324-
latest_version_json=$(
325-
jq --null-input \
326-
--arg "family" "${version_family}" \
327-
'{ "source": { "family": $family } }' \
328-
| /opt/resource/check
329-
)
330-
latest_version=$(jq --raw-output '.[0].version' <<< "${latest_version_json}")
324+
# latest_version_json=$(
325+
# jq --null-input \
326+
# --arg "family" "${version_family}" \
327+
# '{ "source": { "family": $family } }' \
328+
# | /opt/resource/check
329+
# )
330+
# latest_version=$(jq --raw-output '.[0].version' <<< "${latest_version_json}")
331331
332-
if [[ ${latest_version} != ${version_family}* ]]; then
333-
echo >&2 "FAIL: expected version to start with '${version_family}', but got '${latest_version}'."
334-
failure="true"
335-
fi
332+
# if [[ ${latest_version} != ${version_family}* ]]; then
333+
# echo >&2 "FAIL: expected version to start with '${version_family}', but got '${latest_version}'."
334+
# failure="true"
335+
# fi
336336
337337
338338

0 commit comments

Comments
 (0)