Skip to content

Commit

Permalink
Update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
squid233 committed Mar 2, 2024
1 parent 5f5923f commit 498f7b1
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Feature request
description: Suggest an idea for this project
title: "Feature: "
labels: [ "enhancement", "P5" ]
labels: [ "enh", "P4" ]
assignees:
- "squid233"
body:
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@

name: Java CI with Gradle

on: [ push, pull_request, workflow_dispatch ]
on:
push:
branches:
- main
pull_request:
workflow_dispatch:

jobs:
build:
Expand Down
34 changes: 34 additions & 0 deletions .github/workflows/javadoc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Javadoc

on: [ release, workflow_dispatch ]

jobs:
build:
strategy:
matrix:
java: [
22-ea
]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: |
${{ matrix.java }}
21
distribution: 'temurin'
- name: Grant execute permission for gradlew
if: ${{ runner.os != 'Windows' }}
run: chmod +x gradlew
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
- name: Execute Gradle build
run: ./gradlew aggregateJavadoc
- name: Capture Javadoc
uses: actions/upload-artifact@v4
with:
name: javadoc
path: build/docs/javadoc/
2 changes: 1 addition & 1 deletion doc/notes/0.x/0.1.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ _Not Released Yet_

This version includes the following features:

- GLFW 3.3.9
- GLFW 3.4
- OpenGL 1.0 ~ 4.6 functions and constants
- OpenGL extension functions
- OpenGL Loader
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public final class OverrunGL {
/**
* The version of GLFW native libraries.
*/
public static final String GLFW_VERSION = "3.3.9.0";
public static final String GLFW_VERSION = "3.4.0.0";
/**
* The version of NFD native libraries.
*/
Expand Down

0 comments on commit 498f7b1

Please sign in to comment.