New version: LatticeMatrices v0.3.7 #101650
Workflow file for this run
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
| name: Registry Consistency | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| push: | |
| branches: | |
| - master | |
| workflow_dispatch: | |
| env: | |
| JULIA_PKG_USE_CLI_GIT: true | |
| permissions: | |
| contents: read | |
| concurrency: | |
| # Skip intermediate builds: always. | |
| # Cancel intermediate builds: only pull request builds | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} | |
| jobs: | |
| check: | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 30 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| version: | |
| # - '1.0' # RegistryCI currently doesn't support Julia 1.0 # TODO: Uncomment this line | |
| # - '1.1' # RegistryCI currently doesn't support Julia 1.1 # TODO: Uncomment this line | |
| # - '1.2' # RegistryCI currently doesn't support Julia 1.2 # TODO: Uncomment this line | |
| - '1.3' | |
| # We intentionally skip the following: 1.4, 1.5, 1.7 | |
| # But we include those when we run the once-daily cron job. | |
| - '1.6' | |
| - '1.8' | |
| - '1.9' | |
| - '1.10' | |
| - '1.11' | |
| - '1.12' | |
| # - '1.13' # Uncomment this once Julia 1.13 is released | |
| # - 'nightly' # TODO: uncomment this line | |
| os: | |
| - ubuntu-latest | |
| arch: | |
| - x64 | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - uses: julia-actions/setup-julia@5c9647d97b78a5debe5164e9eec09d653d29bd71 # v2.6.1 | |
| with: | |
| version: ${{ matrix.version }} | |
| arch: ${{ matrix.arch }} | |
| - name: Cache artifacts and packages | |
| uses: julia-actions/cache@d10a6fd8f31b12404a54613ebad242900567f2b9 # v2.1.0 | |
| - run: write(ENV["GITHUB_OUTPUT"], "manifest_version=$(VERSION.major).$(VERSION.minor)") | |
| shell: julia --color=yes --project=.ci/ {0} | |
| id: manifest_version | |
| - run: echo "The manifest is .ci/Manifest-v${{ steps.manifest_version.outputs.manifest_version }}.toml" | |
| - run: rm -rf .ci/Manifest.toml | |
| - run: mv .ci/Manifest-v${{ steps.manifest_version.outputs.manifest_version }}.toml .ci/Manifest.toml | |
| - run: rm -rf .ci/Manifest.*.toml | |
| - run: chmod 400 .ci/Project.toml | |
| - run: chmod 400 .ci/Manifest.toml | |
| if: ${{ matrix.version != 'nightly' }} | |
| - run: julia --color=yes -e 'import Pkg; Pkg.Registry.add("General")' | |
| env: | |
| JULIA_PKG_SERVER: "" | |
| - run: julia --color=yes -e 'import Pkg; Pkg.Registry.update()' | |
| - run: .ci/instantiate.sh .ci/ | |
| - run: julia --color=yes --project=.ci/ -e 'import Pkg; Pkg.precompile()' | |
| - run: julia --color=yes --project=.ci/ -e 'import RegistryCI; RegistryCI.test()' |