Skip to content

Commit

Permalink
Try to get Ci builds passing (Github Actions MacOS runners are terrib…
Browse files Browse the repository at this point in the history
…ly unreliable)
  • Loading branch information
cjbrooks12 committed May 15, 2024
1 parent 98a8af4 commit e446c5d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 23 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/push_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
fail-fast: false
matrix:
java: [17]
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
os: ['ubuntu-latest', 'windows-latest']
name: 'Test on ${{ matrix.os }} JDK ${{ matrix.java }}'
runs-on: '${{ matrix.os }}'
steps:
Expand Down Expand Up @@ -57,6 +57,6 @@ jobs:
distribution: 'temurin'
java-version: 17
- name: 'Assemble Artifacts'
run: './gradlew build -x orchidBuild --stacktrace'
run: './gradlew assemble -x orchidBuild --stacktrace'
- name: 'Publish Artifacts to MavenCentral Snapshots Repository'
run: './gradlew publishAllPublicationsToMavenCentralSnapshotsRepository --stacktrace'
21 changes: 0 additions & 21 deletions .github/workflows/push_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,27 +8,6 @@ on:
branches: ['main']

jobs:
testOnAll:
strategy:
fail-fast: false
matrix:
java: [17]
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
name: 'Test on ${{ matrix.os }} JDK ${{ matrix.java }}'
runs-on: '${{ matrix.os }}'
steps:
- uses: 'actions/checkout@v3'
with:
submodules: 'recursive'
fetch-depth: 0 # all commit history and tags
- name: 'Set up JDK ${{ matrix.java }}'
uses: 'actions/setup-java@v2'
with:
distribution: 'temurin'
java-version: '${{ matrix.java }}'
- name: 'Run checks with Gradle'
run: './gradlew check --no-daemon --stacktrace -Prelease -PorchidEnvironment=prod'

publishArtifactsOnMacOs:
runs-on: 'macos-latest'
needs: ['testOnAll']
Expand Down

0 comments on commit e446c5d

Please sign in to comment.