Skip to content
Open
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
33 changes: 29 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@ jobs:
[{
"id": "codice",
"username": "${{ github.actor }}",
"password": "${{ secrets.READ_PACKAGES }}"
"password": "${{ secrets.GITHUB_TOKEN }}"
}]

- name: Quick install (skip tests)
run: mvn install $MAVEN_CLI_OPTS -DskipStatic=true -DskipTests=true
run: mvn install $MAVEN_CLI_OPTS -DskipStatic=true -DskipTests=true -P !itests

- name: Incremental build
run: |
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
[{
"id": "codice",
"username": "${{ github.actor }}",
"password": "${{ secrets.READ_PACKAGES }}"
"password": "${{ secrets.GITHUB_TOKEN }}"
}]

- name: Full build (excluding itests)
Expand Down Expand Up @@ -144,6 +144,16 @@ jobs:
distribution: 'temurin'
cache: maven

- name: Configure Maven settings
uses: s4u/maven-settings-action@v3.0.0
with:
servers: |
[{
"id": "codice",
"username": "${{ github.actor }}",
"password": "${{ secrets.GITHUB_TOKEN }}"
}]

- name: Quick install (skip tests)
run: mvn install $MAVEN_CLI_OPTS -DskipStatic=true -DskipTests=true

Expand Down Expand Up @@ -178,7 +188,7 @@ jobs:
[{
"id": "codice",
"username": "${{ github.actor }}",
"password": "${{ secrets.READ_PACKAGES }}"
"password": "${{ secrets.GITHUB_TOKEN }}"
}]

- name: OWASP Dependency Check
Expand Down Expand Up @@ -234,6 +244,21 @@ jobs:
with:
servers: |
[{
"id": "codice",
"username": "${{ github.actor }}",
"password": "${{ secrets.GITHUB_TOKEN }}"
},
{
"id": "releases",
"username": "${{ github.actor }}",
"password": "${{ secrets.GITHUB_TOKEN }}"
},
{
"id": "snapshots",
"username": "${{ github.actor }}",
"password": "${{ secrets.GITHUB_TOKEN }}"
},
{
"id": "github",
"username": "${{ github.actor }}",
"password": "${{ secrets.GITHUB_TOKEN }}"
Expand Down
2 changes: 1 addition & 1 deletion distribution/sdk/sample-mpegts-streamgenerator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<artifactId>sample-mpegts-streamgenerator</artifactId>
<packaging>jar</packaging>
<properties>
<ffmpeg.version>3.1.1_1</ffmpeg.version>
<ffmpeg.version>4.3.1_1</ffmpeg.version>
<ffmpeg.unpackDirectory>target/ffmpeg</ffmpeg.unpackDirectory>
</properties>
<dependencies>
Expand Down
8 changes: 7 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -947,6 +947,9 @@
<id>codice</id>
<name>Codice GitHub Packages</name>
<url>https://maven.pkg.github.com/codice/*</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>osgeo</id>
Expand All @@ -966,8 +969,11 @@
</pluginRepository>
<pluginRepository>
<id>codice</id>
<name>Codice Repository</name>
<name>Codice GitHub Packages</name>
<url>https://maven.pkg.github.com/codice/*</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>

Expand Down
Loading