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: |