Skip to content

Took last possible point of livelock #748

Took last possible point of livelock

Took last possible point of livelock #748

Workflow file for this run

---
name: "Building IDeSyDe modules and executables"
on:
push:
branches:
- "master"
- "develop"
pull_request:
types: [opened, reopened]
concurrency:
group: test-build @ ${{ github.ref }}
cancel-in-progress: true
jobs:
test-scala-build:
strategy:
matrix:
jdk: [temurin@17, amazon-corretto@17, zulu@17, microsoft@17]
fail-fast: false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: earthly/actions-setup@v1
with:
version: v0.7.8
- name: Build scala
run: |
cd ${{ github.workspace }}
earthly +build-scala-all --jabba_jdk="${{ matrix.jdk }}"
test-rust-build:
strategy:
matrix:
target: [x86_64-unknown-linux-musl, x86_64-pc-windows-gnu]
fail-fast: false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: earthly/actions-setup@v1
with:
version: v0.7.8
- name: Build rust
run: |
cd ${{ github.workspace }}
earthly +build-rust-linux-host --targets="${{ matrix.target }}"