{"id":15057726,"url":"https://github.com/julia-actions/build-julia","last_synced_at":"2026-01-02T06:12:57.640Z","repository":{"id":55595788,"uuid":"316180403","full_name":"julia-actions/build-julia","owner":"julia-actions","description":"An action to build Julia from source for a given commit.","archived":false,"fork":false,"pushed_at":"2022-08-28T12:04:38.000Z","size":30,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":6,"default_branch":"main","last_synced_at":"2025-02-26T02:02:07.611Z","etag":null,"topics":["continuous-integration","github-action","julia","julialang"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/julia-actions.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-11-26T09:22:07.000Z","updated_at":"2024-06-06T21:52:59.000Z","dependencies_parsed_at":"2023-01-04T12:30:47.531Z","dependency_job_id":null,"html_url":"https://github.com/julia-actions/build-julia","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fbuild-julia","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fbuild-julia/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fbuild-julia/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fbuild-julia/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/julia-actions","download_url":"https://codeload.github.com/julia-actions/build-julia/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243558478,"owners_count":20310574,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["continuous-integration","github-action","julia","julialang"],"created_at":"2024-09-24T22:10:48.400Z","updated_at":"2026-01-02T06:12:57.610Z","avatar_url":"https://github.com/julia-actions.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# build-julia\nAn action to build Julia from source for a given commit.\n\n## Usage\n\nSee [`action.yml`](action.yml).\n\n```yaml\nname: Example\n\non: [push, pull_request, workflow_dispatch]\n\njobs:\n  example:\n    runs-on: ubuntu-20.04\n    strategy:\n      matrix:\n        # Even if you are only running one build, you may want to use a strategy matrix,\n        # as it allows you to refer to the ref using ${{ matrix.julia-ref }} in your workflow.\n        # This makes it easier to edit the version that you want to build without having to update\n        # several steps.\n        julia-ref: [v1.5.3]\n\n    steps:\n      - name: Cache\n        id: cache-julia\n        uses: actions/cache@v2\n        with:\n          # If you use a different target dir, you may want to update the cache key to include that info.\n          # actions/cache does not provide an option to specify the target dir for restoring the cache,\n          # so you may run into issues where the target dir of the build-julia action mismatches the cached directory.\n          path: ~/julia\n\n          # Note that this cache key will not work with branches\n          # because there could be new commits after the cache has been created.\n          key: ${{ runner.os }}-${{ matrix.julia-ref }}\n\n      - name: Build Julia\n        # Only rebuild Julia if there is no cache hit.\n        if: steps.cache-julia.outputs.cache-hit != 'true'\n        uses: julia-actions/build-julia@v1\n        with:\n          # The value that is passed to git checkout, e.g. a tag, branch or a commit.\n          #\n          # Default: master\n          ref: ${{ matrix.julia-ref }}\n\n          # The value that is passed to git clone. If you want to build Julia from a fork of yours,\n          # you can change this value to https://github.com/YOUR_GITHUB_NAME/julia.git.\n          #\n          # Default: https://github.com/JuliaLang/julia.git\n          source-repo: ''\n\n          # The directory that Julia will be installed in. Changing this may be useful when building several\n          # versions of Julia within the same environment.\n          #\n          # Default: $HOME/julia\n          target-dir: ''\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjulia-actions%2Fbuild-julia","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjulia-actions%2Fbuild-julia","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjulia-actions%2Fbuild-julia/lists"}