Skip to content

Commit

Permalink
Update verify-jdk9-classes.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning committed Jan 29, 2025
1 parent 36a6434 commit be7ccfc
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/verify-jdk9-classes.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,12 @@
# specific language governing permissions and limitations
# under the License.

echo "Checking Scala CLI version..."
scala-cli --version

echo "Starting verification with Scala-CLI..."

for file in stream/target/scala-cli/*.sc; do
cat $file
echo "Starting verification for with file: $file."
if scala-cli -S 3.5.2 "$file" ; then
if scala-cli --cli-version 1.5.4 "$file" ; then
echo "Verification successful for $file."
else
echo "Error when verifying $file."
Expand Down

0 comments on commit be7ccfc

Please sign in to comment.