From 60244aaf16e6848d06e3af5d09db0e44070dca06 Mon Sep 17 00:00:00 2001 From: Irmen de Jong Date: Thu, 21 Mar 2024 21:40:18 +0100 Subject: [PATCH] 64tass version... --- .github/workflows/all-ci.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/all-ci.yml b/.github/workflows/all-ci.yml index ec741c4fe..ee4545ec5 100644 --- a/.github/workflows/all-ci.yml +++ b/.github/workflows/all-ci.yml @@ -12,14 +12,19 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: install 64tass - run: sudo apt-get install 64tass + - name: build and install recent 64tass + run: | + sudo apt-get install -y make build-essential + git clone --depth=1 https://github.com/irmen/64tass + cd 64tass + make -j4 + sudo make install - name: Set up JDK 11 uses: actions/setup-java@v4 with: java-version: 11 - distribution: adopt + distribution: temurin - name: Build and test with Gradle run: |