Skip to content

Commit

Permalink
Test all files
Browse files Browse the repository at this point in the history
Signed-off-by: Guian Gumpac <[email protected]>
  • Loading branch information
GumpacG committed Aug 22, 2024
1 parent c5f46f2 commit e097b08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .github/json_matrices/build-matrix.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"RUNNER": "macos-12",
"ARCH": "x64",
"TARGET": "x86_64-apple-darwin",
"PACKAGE_MANAGERS": ["pypi", "npm", "maven"]
"PACKAGE_MANAGERS": ["pypi", "npm"]
},
{
"OS": "macos",
Expand Down
21 changes: 1 addition & 20 deletions .github/workflows/java-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,8 +198,7 @@ jobs:
run: |
mkdir bundles
mkdir maven-files
find . -name "*.jar" | head -1 | xargs -I{} cp "{}" ./bundle.jar
jar xf bundle.jar
for file in $(find . -name "*.jar"); do jar xf "$file" ; done
mv valkey-glide-*.asc maven-files
mv valkey-glide-*.pom maven-files
mv valkey-glide-*-sources.jar maven-files
Expand All @@ -219,24 +218,6 @@ jobs:
cd maven-files
for file in *; do md5sum "$file" | cut -f 1 -d " " > ../maven-md5-files/"$file".md5 ; done
# - name: Generate asc files for all Maven files
# run: |
# mkdir maven-asc-files
# cd maven-files
# for file in *; do gpg --pinentry-mode=loopback --passphrase "${{ secrets.GPG_PASSWORD }}" -ab "$file" > ../maven-asc-files/"$file".asc ; done

# - name: 'Install GPG Secret Key'
# id: import_gpg
# uses: crazy-max/ghaction-import-gpg@v4
# with:
# gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
# passphrase: ${{ secrets.GPG_PASSWORD }}

# - name: Generate PGP signatures
# run: |
# cd maven-files
# gpg --detach-sign --armor bundle-aarch64-apple-darwin.jar

- name: Move files to the correct directory tree
run: |
mkdir -p build/io/valkey/valkey-glide/${{ env.RELEASE_VERSION }}
Expand Down

0 comments on commit e097b08

Please sign in to comment.