Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ on:
jobs:
smoke:
name: P4 smoke (targeted matrix)
runs-on: ubuntu-latest
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
runs-on: [self-hosted, Linux, X64, tinyexpression-ci]

steps:
- uses: actions/checkout@v6
Expand All @@ -19,7 +20,6 @@ jobs:
with:
java-version: '21'
distribution: 'temurin'
cache: 'maven'
server-id: github-unlaxer
server-username: GITHUB_ACTOR
server-password: GITHUB_TOKEN
Expand All @@ -45,7 +45,8 @@ jobs:

build:
name: Full verify
runs-on: ubuntu-latest
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
runs-on: [self-hosted, Linux, X64, tinyexpression-ci]
needs: smoke

steps:
Expand All @@ -56,7 +57,6 @@ jobs:
with:
java-version: '21'
distribution: 'temurin'
cache: 'maven'
server-id: github-unlaxer
server-username: GITHUB_ACTOR
server-password: GITHUB_TOKEN
Expand Down