Support for WOW scheduler #68
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: nf-cws CI | |
| on: | |
| push: | |
| branches: | |
| - '*' | |
| tags-ignore: | |
| - '*' | |
| pull_request: | |
| branches: | |
| - '*' | |
| jobs: | |
| build: | |
| name: Build nf-cws | |
| if: "!contains(github.event.head_commit.message, '[ci skip]')" | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| java_version: [17, 21] | |
| steps: | |
| - name: Environment | |
| run: env | sort | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 1 | |
| submodules: true | |
| - name: Install dependencies for C (cross-)compilation | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y clang lld gcc-aarch64-linux-gnu libc6-dev-arm64-cross | |
| - name: Compile C script using make | |
| run: make c_scripts | |
| - name: Setup Java ${{ matrix.java_version }} | |
| uses: actions/setup-java@v3 | |
| with: | |
| java-version: ${{matrix.java_version}} | |
| architecture: x64 | |
| distribution: 'temurin' | |
| - name: Compile | |
| run: ./gradlew assemble | |
| - name: Tests | |
| run: ./gradlew check | |
| env: | |
| GRADLE_OPTS: '-Dorg.gradle.daemon=false' |