feat(osgi): add Eclipse JDT Java 21 compiler prefs to all projects #568
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
| # available github action variables can be found | |
| # https://docs.github.com/en/actions/learn-github-actions/contexts#github-context | |
| name: pop | |
| on: [push,pull_request] | |
| env: | |
| AGENT_ID: github_runner | |
| GH_BRANCH: ${{ github.head_ref || github.ref_name }} | |
| run-name: pop branch ${{ github.head_ref || github.ref_name }} for ${{github.actor}} | |
| jobs: | |
| pop-on-os-matrix: | |
| name: pop | |
| strategy: | |
| matrix: | |
| os: | |
| # - macos-10.15 | |
| # - macos-11 | |
| # - macos-12 | |
| - macos-latest | |
| # - ubuntu-18.04 | |
| # - ubuntu-20.04 | |
| # - ubuntu-22.04 | |
| - ubuntu-latest | |
| # - windows-2022 | |
| # - windows-2019 | |
| - windows-latest | |
| arch: | |
| - X64 | |
| - ARM64 | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - name: execution proof-of-performance script pop-github-launch.sh | |
| shell: bash | |
| env: | |
| debug: true | |
| run: | | |
| ls -la; \ | |
| .github/workflows/pop-github-launch.sh |