Skip to content

Commit

Permalink
Use Java 8 in build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ds58 authored Oct 23, 2024
1 parent a78e832 commit 319ba3e
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/build-jcef.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ jobs:
- name: Upload mask
run: echo "::add-mask::${{ secrets.UPLOAD_URL }}"
- uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'temurin'
- name: Install deps and build
run: |
sudo apt update
Expand Down Expand Up @@ -44,6 +49,11 @@ jobs:
- name: Upload mask
run: echo "::add-mask::${{ secrets.UPLOAD_URL }}"
- uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'temurin'
- uses: ilammy/msvc-dev-cmd@v1
- name: Install s3cmd
run: |
Expand Down Expand Up @@ -76,6 +86,11 @@ jobs:
- name: Upload mask
run: echo "::add-mask::${{ secrets.UPLOAD_URL }}"
- uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'temurin'
- run: |
brew install ninja
brew install coreutils
Expand Down

0 comments on commit 319ba3e

Please sign in to comment.