From 34d5060911b8c04912ddbf17f364352b32c9517f Mon Sep 17 00:00:00 2001 From: Fabio Niephaus Date: Tue, 25 Jan 2022 18:23:57 +0100 Subject: [PATCH] Run Cuis tests with Graal compiler --- .github/workflows/ci.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9d7bca8ab..18f1a9450 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -147,11 +147,12 @@ jobs: with: submodules: true - name: Set up dependencies - shell: bash run: mx.trufflesqueak/utils.sh set-up-dependencies java17 - - name: Build TruffleSqueak JVM component - run: mx.trufflesqueak/utils.sh build-component trufflesqueak-jvm SMALLTALK_INSTALLABLE_JAVA17 ${{ env.INSTALLABLE_JVM_TARGET }} - - name: Clone Cuis-Smalltalk repository + - name: Build TruffleSqueak and Graal compiler + run: | + mx --dy /compiler build + echo "$(mx --dy /compiler graalvm-home)/bin" >> $GITHUB_PATH + - name: Clone Cuis-Smalltalk-Dev repository uses: actions/checkout@v2 with: repository: 'Cuis-Smalltalk/Cuis-Smalltalk-Dev'