ui: Add filter to "Package ID" column of packages table #8299
Workflow file for this run
This file contains 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: Build and Test | |
on: | |
merge_group: | |
types: [ checks_requested ] | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
env: | |
GRADLE_OPTS: -Dorg.gradle.daemon=false | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@94baf225fe0a508e581a564467443d0e2379123b # v4 | |
- name: Build all classes | |
run: ./gradlew --stacktrace classes | |
build-cli: | |
strategy: | |
matrix: | |
target: | |
- name: 'Linux x64' | |
os: ubuntu-24.04 | |
task: 'linkReleaseExecutableLinuxX64' | |
artifact: 'osc-cli-linux-x64' | |
buildPath: 'cli/build/bin/linuxX64/releaseExecutable/osc.kexe' | |
binName: 'osc' | |
- name: 'macOS arm64' | |
os: macos-15 | |
task: 'linkReleaseExecutableMacosArm64' | |
artifact: 'osc-cli-macos-arm64' | |
buildPath: 'cli/build/bin/macosArm64/releaseExecutable/osc.kexe' | |
binName: 'osc' | |
- name: 'macOS x64' | |
os: macos-13 | |
task: 'linkReleaseExecutableMacosX64' | |
artifact: 'osc-cli-macos-x64' | |
buildPath: 'cli/build/bin/macosX64/releaseExecutable/osc.kexe' | |
binName: 'osc' | |
- name: 'Windows x64' | |
os: windows-2022 | |
task: 'linkReleaseExecutableMingwX64' | |
artifact: 'osc-cli-windows-x64' | |
buildPath: 'cli/build/bin/mingwX64/releaseExecutable/osc.exe' | |
binName: 'osc.exe' | |
runs-on: ${{ matrix.target.os }} | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Setup Java | |
if: runner.os == 'Windows' | |
uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4 | |
with: | |
distribution: temurin | |
java-version: 21 | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@94baf225fe0a508e581a564467443d0e2379123b # v4 | |
- name: Build CLI - ${{ matrix.target.name }} | |
run: ./gradlew --stacktrace cli:${{ matrix.target.task }} | |
- name: Rename CLI binary | |
shell: bash | |
run: | | |
mkdir -p ${{ matrix.target.artifact }} | |
mv ${{ matrix.target.buildPath }} ${{ matrix.target.artifact }}/${{ matrix.target.binName }} | |
- name: Run CLI binary | |
run: ./${{ matrix.target.artifact }}/${{ matrix.target.binName }} --version | |
- name: Upload CLI binary | |
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4 | |
with: | |
name: ${{ matrix.target.artifact }} | |
path: ${{ matrix.target.artifact }}/${{ matrix.target.binName }} | |
retention-days: 7 | |
build-ui: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@94baf225fe0a508e581a564467443d0e2379123b # v4 | |
- name: Generate OpenAPI spec | |
run: ./gradlew --stacktrace :core:generateOpenApiSpec | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- name: Install Node | |
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4 | |
with: | |
node-version: 20 | |
cache: pnpm | |
cache-dependency-path: ui/pnpm-lock.yaml | |
- name: Install dependencies | |
run: pnpm -C ui install | |
- name: Build UI | |
run: pnpm -C ui build | |
- name: Test UI | |
run: pnpm -C ui test | |
test: | |
needs: build | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@94baf225fe0a508e581a564467443d0e2379123b # v4 | |
- name: Run tests | |
run: ./gradlew test allTests -Dkotest.tags='!Integration' | |
- name: Create Test Summary | |
uses: test-summary/action@31493c76ec9e7aa675f1585d3ed6f1da69269a86 # v2 | |
with: | |
paths: "**/test-results/**/TEST-*.xml" | |
if: success() || failure() | |
- name: Upload test results | |
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4 | |
if: success() || failure() | |
with: | |
name: test-results | |
path: "**/build/reports/tests" | |
retention-days: 7 | |
integration-test: | |
needs: build | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@94baf225fe0a508e581a564467443d0e2379123b # v4 | |
- name: Run integration tests | |
run: ./gradlew test allTests -Dkotest.tags='Integration' | |
- name: Create Test Summary | |
uses: test-summary/action@31493c76ec9e7aa675f1585d3ed6f1da69269a86 # v2 | |
with: | |
paths: "**/test-results/**/TEST-*.xml" | |
if: success() || failure() | |
- name: Upload test results | |
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4 | |
if: success() || failure() | |
with: | |
name: integration-test-results | |
path: "**/build/reports/tests" | |
retention-days: 7 |