-
Notifications
You must be signed in to change notification settings - Fork 0
Working #18
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
Merged
Working #18
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
843ca46
Updated to use GitHub Packages.
di-shi 62c126e
Updated package folders.
di-shi 5403f57
Fixed path issue.
di-shi b2fb1fa
Test path.
di-shi cd6b91f
Test upload path.
di-shi 01e7a5e
Updated for 4.33.0-rc.1
di-shi 18fb5ec
Updated for 4.33.0-rc.2.
di-shi 6bfd120
Updated release notes for 4.33.0.
di-shi 0b68632
Updated version in code.
di-shi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| version: 2 | ||
| updates: | ||
| - package-ecosystem: "maven" | ||
| directory: "/" | ||
| schedule: | ||
| interval: "weekly" | ||
| day: "sunday" | ||
| time: "00:25" | ||
| - package-ecosystem: "github-actions" | ||
| directory: "/" | ||
| schedule: | ||
| interval: "weekly" | ||
| day: "saturday" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,49 @@ | ||
| name: C/C++ CI and Maven Deploy | ||
|
|
||
| on: | ||
| release: | ||
| types: [created] | ||
|
|
||
| jobs: | ||
| build: | ||
| runs-on: ubuntu-latest | ||
| container: oraclelinux:8 | ||
| permissions: | ||
| contents: read | ||
| steps: | ||
| - uses: actions/checkout@v6 | ||
| - run: | | ||
di-shi marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| yum install -y epel-release | ||
| yum install -y make gcc-c++ openssl-devel utf8proc-devel | ||
| - run: | | ||
| cd $GITHUB_WORKSPACE/src | ||
| make build | ||
| - uses: actions/upload-artifact@v7 | ||
| with: | ||
| name: osptoolkit | ||
| path: | | ||
| ${{ github.workspace }}/lib/libosptk.a | ||
| if-no-files-found: error | ||
|
|
||
| package: | ||
| needs: build | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| contents: read | ||
| packages: write | ||
| steps: | ||
| - uses: actions/checkout@v6 | ||
| - uses: actions/setup-java@v5 | ||
| with: | ||
| java-version: "21" | ||
| distribution: "corretto" | ||
| cache: "maven" | ||
| server-id: github | ||
di-shi marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| - uses: actions/download-artifact@v8 | ||
| with: | ||
| name: osptoolkit | ||
| - run: | | ||
| mv libosptk.a lib | ||
| mvn -B deploy | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,91 @@ | ||
| # For Maven | ||
|
|
||
| target/ | ||
| pom.xml.tag | ||
| pom.xml.releaseBackup | ||
| pom.xml.versionsBackup | ||
| pom.xml.next | ||
| release.properties | ||
| dependency-reduced-pom.xml | ||
| buildNumber.properties | ||
| .mvn/timing.properties | ||
| # https://maven.apache.org/wrapper/#usage-without-binary-jar | ||
| .mvn/wrapper/maven-wrapper.jar | ||
|
|
||
| # Eclipse m2e generated files | ||
| # Eclipse Core | ||
| .project | ||
| # JDT-specific (Eclipse Java Development Tools) | ||
| .classpath | ||
|
|
||
| # For C++ | ||
|
|
||
| # Prerequisites | ||
| *.d | ||
|
|
||
| # Compiled Object files | ||
| *.slo | ||
| *.lo | ||
| *.o | ||
| *.obj | ||
|
|
||
| # Precompiled Headers | ||
| *.gch | ||
| *.pch | ||
|
|
||
| # Linker files | ||
| *.ilk | ||
|
|
||
| # Debugger Files | ||
| *.pdb | ||
|
|
||
| # Compiled Dynamic libraries | ||
| *.so | ||
| *.dylib | ||
| *.dll | ||
| *.so.* | ||
|
|
||
|
|
||
| # Fortran module files | ||
| *.mod | ||
| *.smod | ||
|
|
||
| # Compiled Static libraries | ||
| *.lai | ||
| *.la | ||
| *.a | ||
| *.lib | ||
|
|
||
| # Executables | ||
| *.exe | ||
| *.out | ||
| *.app | ||
|
|
||
| # Build directories | ||
| build/ | ||
| Build/ | ||
| build-*/ | ||
|
|
||
| # CMake generated files | ||
| CMakeFiles/ | ||
| CMakeCache.txt | ||
| cmake_install.cmake | ||
| Makefile | ||
| install_manifest.txt | ||
| compile_commands.json | ||
|
|
||
| # Temporary files | ||
| *.tmp | ||
| *.log | ||
| *.bak | ||
| *.swp | ||
|
|
||
| # vcpkg | ||
| vcpkg_installed/ | ||
|
|
||
| # debug information files | ||
| *.dwo | ||
|
|
||
| # test output & cache | ||
| Testing/ | ||
| .cache/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,133 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <project xmlns="http://maven.apache.org/POM/4.0.0" | ||
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
|
|
||
| <!-- Project Coordinates --> | ||
| <modelVersion>4.0.0</modelVersion> | ||
|
|
||
| <groupId>com.transnexus.c</groupId> | ||
| <artifactId>osptoolkit</artifactId> | ||
| <version>${revision}+${profile.id}</version> | ||
| <packaging>pom</packaging> | ||
|
|
||
| <!-- Project Description --> | ||
| <name>OSPToolkit</name> | ||
| <url>https://github.com/TransNexus/osptoolkit</url> | ||
| <distributionManagement> | ||
| <repository> | ||
| <id>github</id> | ||
| <name>GitHub Apache Maven Packages</name> | ||
| <url>https://maven.pkg.github.com/TransNexus/osptoolkit</url> | ||
| </repository> | ||
| </distributionManagement> | ||
|
|
||
| <!-- Build Configuration --> | ||
| <properties> | ||
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
| <maven.compiler.release>21</maven.compiler.release> | ||
| <revision>4.33.0</revision> | ||
| </properties> | ||
|
|
||
| <!-- Build Settings --> | ||
| <build> | ||
| <plugins> | ||
| <plugin> | ||
| <artifactId>maven-clean-plugin</artifactId> | ||
| <version>3.5.0</version> | ||
| </plugin> | ||
| <plugin> | ||
| <artifactId>maven-resources-plugin</artifactId> | ||
| <version>3.5.0</version> | ||
| </plugin> | ||
| <plugin> | ||
| <artifactId>maven-compiler-plugin</artifactId> | ||
| <version>3.15.0</version> | ||
| </plugin> | ||
| <plugin> | ||
| <artifactId>maven-surefire-plugin</artifactId> | ||
| <version>3.5.5</version> | ||
| </plugin> | ||
| <plugin> | ||
| <artifactId>maven-jar-plugin</artifactId> | ||
| <version>3.5.0</version> | ||
| </plugin> | ||
| <plugin> | ||
| <artifactId>maven-install-plugin</artifactId> | ||
| <version>3.1.4</version> | ||
| </plugin> | ||
| <plugin> | ||
| <artifactId>maven-deploy-plugin</artifactId> | ||
| <version>3.1.4</version> | ||
| </plugin> | ||
| <plugin> | ||
| <artifactId>maven-site-plugin</artifactId> | ||
| <version>3.21.0</version> | ||
| </plugin> | ||
| <plugin> | ||
| <artifactId>maven-project-info-reports-plugin</artifactId> | ||
| <version>3.9.0</version> | ||
| </plugin> | ||
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-help-plugin</artifactId> | ||
| <version>3.5.1</version> | ||
| </plugin> | ||
| <plugin> | ||
| <artifactId>maven-assembly-plugin</artifactId> | ||
| <version>3.8.0</version> | ||
| <configuration> | ||
| <appendAssemblyId>false</appendAssemblyId> | ||
| <inlineDescriptors> | ||
| <inlineDescriptor> | ||
| <id>distribute</id> | ||
| <formats> | ||
| <format>tar.gz</format> | ||
| </formats> | ||
| <files> | ||
| <file> | ||
| <source>${project.basedir}/RELNOTES.txt</source> | ||
| <outputDirectory>/</outputDirectory> | ||
| </file> | ||
| </files> | ||
| <fileSets> | ||
| <fileSet> | ||
| <directory> | ||
| ${project.basedir}/include</directory> | ||
| <outputDirectory>/include</outputDirectory> | ||
| </fileSet> | ||
| <fileSet> | ||
| <directory> | ||
| ${project.basedir}/lib</directory> | ||
| <outputDirectory>/lib</outputDirectory> | ||
di-shi marked this conversation as resolved.
Show resolved
Hide resolved
di-shi marked this conversation as resolved.
Show resolved
Hide resolved
di-shi marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| </fileSet> | ||
| </fileSets> | ||
| </inlineDescriptor> | ||
| </inlineDescriptors> | ||
| </configuration> | ||
| <executions> | ||
| <execution> | ||
| <id>build-package</id> | ||
| <phase>package</phase> | ||
| <goals> | ||
| <goal>single</goal> | ||
| </goals> | ||
| </execution> | ||
| </executions> | ||
| </plugin> | ||
| </plugins> | ||
| </build> | ||
|
|
||
| <!-- Profiles --> | ||
| <profiles> | ||
| <profile> | ||
| <id>rhel8</id> | ||
| <properties> | ||
| <profile.id>rhel8</profile.id> | ||
| </properties> | ||
| <activation> | ||
| <activeByDefault>true</activeByDefault> | ||
| </activation> | ||
| </profile> | ||
| </profiles> | ||
| </project> | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.