forked from Verizon/quiver
-
Notifications
You must be signed in to change notification settings - Fork 3
Publish to Sonatype Central Portal #9
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
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
75d851c
Update to sbt-1.11.2
rossabaker 015aa15
Scala 2.12.20, 2.13.16, 3.3.6; ScalaJS 2.19.0
rossabaker c1957d2
Set publishTo to Sonatype Central Portal
rossabaker c541220
Switch to sbt-typelevel
rossabaker 89c32a2
Switch to sbt-typelevel-site
rossabaker f347922
Unshadow variable in viz package
rossabaker 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
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,162 @@ | ||
| # This file was automatically generated by sbt-github-actions using the | ||
| # githubWorkflowGenerate task. You should add and commit this file to | ||
| # your git repository. It goes without saying that you shouldn't edit | ||
| # this file by hand! Instead, if you wish to make changes, you should | ||
| # change your sbt build configuration to revise the workflow description | ||
| # to meet your needs, then regenerate this file. | ||
|
|
||
| name: Continuous Integration | ||
|
|
||
| on: | ||
| pull_request: | ||
| branches: ['**', '!update/**', '!pr/**'] | ||
| push: | ||
| branches: ['**', '!update/**', '!pr/**'] | ||
| tags: [v*] | ||
|
|
||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
|
||
|
|
||
| concurrency: | ||
| group: ${{ github.workflow }} @ ${{ github.ref }} | ||
| cancel-in-progress: true | ||
|
|
||
| jobs: | ||
| build: | ||
| name: Test | ||
| strategy: | ||
| matrix: | ||
| os: [ubuntu-22.04] | ||
| scala: [2.12, 2.13, 3] | ||
| java: [temurin@8] | ||
| runs-on: ${{ matrix.os }} | ||
| timeout-minutes: 60 | ||
| steps: | ||
| - name: Checkout current branch (full) | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| fetch-depth: 0 | ||
|
|
||
| - name: Setup sbt | ||
| uses: sbt/setup-sbt@v1 | ||
|
|
||
| - name: Setup Java (temurin@8) | ||
| id: setup-java-temurin-8 | ||
| if: matrix.java == 'temurin@8' | ||
| uses: actions/setup-java@v4 | ||
| with: | ||
| distribution: temurin | ||
| java-version: 8 | ||
| cache: sbt | ||
|
|
||
| - name: sbt update | ||
| if: matrix.java == 'temurin@8' && steps.setup-java-temurin-8.outputs.cache-hit == 'false' | ||
| run: sbt +update | ||
|
|
||
| - name: Check that workflows are up to date | ||
| run: sbt githubWorkflowCheck | ||
|
|
||
| - name: Check headers and formatting | ||
| if: matrix.java == 'temurin@8' && matrix.os == 'ubuntu-22.04' | ||
| run: sbt '++ ${{ matrix.scala }}' headerCheckAll scalafmtCheckAll 'project /' scalafmtSbtCheck | ||
|
|
||
| - name: Test | ||
| run: sbt '++ ${{ matrix.scala }}' test | ||
|
|
||
| - name: Check binary compatibility | ||
| if: matrix.java == 'temurin@8' && matrix.os == 'ubuntu-22.04' | ||
| run: sbt '++ ${{ matrix.scala }}' mimaReportBinaryIssues | ||
|
|
||
| - name: Generate API documentation | ||
| if: matrix.java == 'temurin@8' && matrix.os == 'ubuntu-22.04' | ||
| run: sbt '++ ${{ matrix.scala }}' doc | ||
|
|
||
| dependency-submission: | ||
| name: Submit Dependencies | ||
| if: github.event.repository.fork == false && github.event_name != 'pull_request' | ||
| strategy: | ||
| matrix: | ||
| os: [ubuntu-22.04] | ||
| java: [temurin@8] | ||
| runs-on: ${{ matrix.os }} | ||
| steps: | ||
| - name: Checkout current branch (full) | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| fetch-depth: 0 | ||
|
|
||
| - name: Setup sbt | ||
| uses: sbt/setup-sbt@v1 | ||
|
|
||
| - name: Setup Java (temurin@8) | ||
| id: setup-java-temurin-8 | ||
| if: matrix.java == 'temurin@8' | ||
| uses: actions/setup-java@v4 | ||
| with: | ||
| distribution: temurin | ||
| java-version: 8 | ||
| cache: sbt | ||
|
|
||
| - name: sbt update | ||
| if: matrix.java == 'temurin@8' && steps.setup-java-temurin-8.outputs.cache-hit == 'false' | ||
| run: sbt +update | ||
|
|
||
| - name: Submit Dependencies | ||
| uses: scalacenter/sbt-dependency-submission@v2 | ||
| with: | ||
| modules-ignore: docs_2.12 docs_2.13 docs_3 | ||
| configs-ignore: test scala-tool scala-doc-tool test-internal | ||
|
|
||
| site: | ||
| name: Generate Site | ||
| strategy: | ||
| matrix: | ||
| os: [ubuntu-22.04] | ||
| java: [temurin@11] | ||
| runs-on: ${{ matrix.os }} | ||
| steps: | ||
| - name: Checkout current branch (full) | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| fetch-depth: 0 | ||
|
|
||
| - name: Setup sbt | ||
| uses: sbt/setup-sbt@v1 | ||
|
|
||
| - name: Setup Java (temurin@8) | ||
| id: setup-java-temurin-8 | ||
| if: matrix.java == 'temurin@8' | ||
| uses: actions/setup-java@v4 | ||
| with: | ||
| distribution: temurin | ||
| java-version: 8 | ||
| cache: sbt | ||
|
|
||
| - name: sbt update | ||
| if: matrix.java == 'temurin@8' && steps.setup-java-temurin-8.outputs.cache-hit == 'false' | ||
| run: sbt +update | ||
|
|
||
| - name: Setup Java (temurin@11) | ||
| id: setup-java-temurin-11 | ||
| if: matrix.java == 'temurin@11' | ||
| uses: actions/setup-java@v4 | ||
| with: | ||
| distribution: temurin | ||
| java-version: 11 | ||
| cache: sbt | ||
|
|
||
| - name: sbt update | ||
| if: matrix.java == 'temurin@11' && steps.setup-java-temurin-11.outputs.cache-hit == 'false' | ||
| run: sbt +update | ||
|
|
||
| - name: Generate site | ||
| run: sbt docs/tlSite | ||
|
|
||
| - name: Publish site | ||
| if: github.event_name != 'pull_request' && github.ref == 'refs/heads/main' | ||
| uses: peaceiris/actions-gh-pages@v4.0.0 | ||
| with: | ||
| github_token: ${{ secrets.GITHUB_TOKEN }} | ||
| publish_dir: site/target/docs/site | ||
| keep_files: true |
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,59 @@ | ||
| # This file was automatically generated by sbt-github-actions using the | ||
| # githubWorkflowGenerate task. You should add and commit this file to | ||
| # your git repository. It goes without saying that you shouldn't edit | ||
| # this file by hand! Instead, if you wish to make changes, you should | ||
| # change your sbt build configuration to revise the workflow description | ||
| # to meet your needs, then regenerate this file. | ||
|
|
||
| name: Clean | ||
|
|
||
| on: push | ||
|
|
||
| jobs: | ||
| delete-artifacts: | ||
| name: Delete Artifacts | ||
| runs-on: ubuntu-latest | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| steps: | ||
| - name: Delete artifacts | ||
| run: | | ||
| # Customize those three lines with your repository and credentials: | ||
| REPO=${GITHUB_API_URL}/repos/${{ github.repository }} | ||
|
|
||
| # A shortcut to call GitHub API. | ||
| ghapi() { curl --silent --location --user _:$GITHUB_TOKEN "$@"; } | ||
|
|
||
| # A temporary file which receives HTTP response headers. | ||
| TMPFILE=/tmp/tmp.$$ | ||
|
|
||
| # An associative array, key: artifact name, value: number of artifacts of that name. | ||
| declare -A ARTCOUNT | ||
|
|
||
| # Process all artifacts on this repository, loop on returned "pages". | ||
| URL=$REPO/actions/artifacts | ||
| while [[ -n "$URL" ]]; do | ||
|
|
||
| # Get current page, get response headers in a temporary file. | ||
| JSON=$(ghapi --dump-header $TMPFILE "$URL") | ||
|
|
||
| # Get URL of next page. Will be empty if we are at the last page. | ||
| URL=$(grep '^Link:' "$TMPFILE" | tr ',' '\n' | grep 'rel="next"' | head -1 | sed -e 's/.*<//' -e 's/>.*//') | ||
| rm -f $TMPFILE | ||
|
|
||
| # Number of artifacts on this page: | ||
| COUNT=$(( $(jq <<<$JSON -r '.artifacts | length') )) | ||
|
|
||
| # Loop on all artifacts on this page. | ||
| for ((i=0; $i < $COUNT; i++)); do | ||
|
|
||
| # Get name of artifact and count instances of this name. | ||
| name=$(jq <<<$JSON -r ".artifacts[$i].name?") | ||
| ARTCOUNT[$name]=$(( $(( ${ARTCOUNT[$name]} )) + 1)) | ||
|
|
||
| id=$(jq <<<$JSON -r ".artifacts[$i].id?") | ||
| size=$(( $(jq <<<$JSON -r ".artifacts[$i].size_in_bytes?") )) | ||
| printf "Deleting '%s' #%d, %'d bytes\n" $name ${ARTCOUNT[$name]} $size | ||
| ghapi -X DELETE $REPO/actions/artifacts/$id | ||
| done | ||
| done |
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If this is still alive, it needs a 3.3.6 section. Or maybe it works with the new 2.13.x and 3.x syntax.