Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update CI workflows to use JDK 17.0.5+8 #9

Merged
Show file tree
Hide file tree
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
22 changes: 14 additions & 8 deletions .github/workflows/bob.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: [push, pull_request]
env:
VERSION_FILENAME: 'info.json'
BUILD_SERVER: 'https://build-stage.defold.com'
CHANNEL: 'beta'
CHANNEL: 'alpha'

jobs:
build_with_bob:
Expand All @@ -17,9 +17,11 @@ jobs:
name: Build
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
- uses: actions/setup-java@v3
with:
java-version: '16.0.1'
java-version: '17.0.5+8'
architecture: x64
distribution: 'temurin'

- name: Get Defold version
run: |
Expand Down Expand Up @@ -60,9 +62,11 @@ jobs:
name: Build
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
- uses: actions/setup-java@v3
with:
java-version: '16.0.1'
java-version: '17.0.5+8'
architecture: x64
distribution: 'temurin'

- name: Get Defold version
run: |
Expand All @@ -87,15 +91,17 @@ jobs:
build_with_bob_macos:
strategy:
matrix:
platform: [arm64-darwin, x86_64-darwin]
platform: [arm64-macos, x86_64-macos]
runs-on: macOS-latest

name: Build
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
- uses: actions/setup-java@v3
with:
java-version: '16.0.1'
java-version: '17.0.5+8'
architecture: x64
distribution: 'temurin'

- name: Get Defold version
run: |
Expand Down
Binary file modified defold-simpledata/plugins/share/pluginSimpleDataExt.jar
Binary file not shown.
Loading