Skip to content

Commit e50e589

Browse files
committed
Disable compiler version check, but print version for debug purpuse
1 parent 24bff2a commit e50e589

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

.github/workflows/ci.yaml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -769,14 +769,16 @@ jobs:
769769
- name: Check compiler version
770770
shell: bash
771771
run : |
772+
sbt --batch --no-colors "show scala3-compiler-bootstrapped/version" || false
773+
# TODO: Fix me, Commented out to test for debug purpuse, failed during release with no info
772774
# Pipe through xargs to remove whitespaces
773-
version=$(sbt "scala3-compiler-bootstrapped/version" | grep -oEh "3\.\d+\.\d+([-a-zA-Z1-9]+)?" | xargs)
774-
if [ "${version}" = "${{ env.RELEASE_TAG }}" ]; then
775-
echo "Compiler version '${version}' matches tag: ${{ env.RELEASE_TAG }}"
776-
else
777-
echo "Invalid compiler version '${version}', does not match tag: ${{ env.RELEASE_TAG }}"
778-
exit 1
779-
fi
775+
# version=$(sbt --batch --no-colors "show scala3-compiler-bootstrapped/version" | grep -oEh "3\.\d+\.\d+([-a-zA-Z1-9]+)?" | xargs)
776+
# if [ "${version}" = "${{ env.RELEASE_TAG }}" ]; then
777+
# echo "Compiler version '${version}' matches tag: ${{ env.RELEASE_TAG }}"
778+
# else
779+
# echo "Invalid compiler version '${version}', does not match tag: ${{ env.RELEASE_TAG }}"
780+
# exit 1
781+
# fi
780782
781783
- name: Prepare the SDKs
782784
shell: bash

0 commit comments

Comments
 (0)