mirror of
https://github.com/julia-actions/julia-buildpkg.git
synced 2026-02-12 09:26:54 +08:00
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e85a72e789 | ||
|
|
8e4b7ee508 | ||
|
|
a2be14d86d | ||
|
|
4ac6b31e10 | ||
|
|
fdc6cd6ae7 |
2
.github/workflows/backup.yml
vendored
2
.github/workflows/backup.yml
vendored
@@ -12,7 +12,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Configure cache
|
||||
uses: actions/cache@v4
|
||||
uses: actions/cache@v5
|
||||
with:
|
||||
path: |
|
||||
${{ env.GITHUB_WORKSPACE }}
|
||||
|
||||
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
@@ -40,7 +40,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Checkout Example.jl
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
with:
|
||||
repository: julia-actions/Example.jl
|
||||
|
||||
@@ -49,7 +49,7 @@ jobs:
|
||||
shell: bash
|
||||
|
||||
- name: Checkout julia-buildpkg
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
with:
|
||||
path: ./.github/actions/julia-buildpkg
|
||||
|
||||
@@ -68,9 +68,9 @@ jobs:
|
||||
|
||||
- uses: julia-actions/julia-processcoverage@v1
|
||||
|
||||
- uses: codecov/codecov-action@v3
|
||||
- uses: codecov/codecov-action@v5
|
||||
with:
|
||||
file: lcov.info
|
||||
files: lcov.info
|
||||
|
||||
- name: Verify that test output file exists
|
||||
run: test -f "$HOME/julia-buildpkg"
|
||||
|
||||
@@ -8,7 +8,7 @@ Julia needs to be installed before this action can run. This can easily be achie
|
||||
|
||||
And example workflow that uses this action might look like this:
|
||||
|
||||
```
|
||||
```yaml
|
||||
name: Run tests
|
||||
|
||||
on: [push, pull_request]
|
||||
@@ -26,8 +26,8 @@ jobs:
|
||||
julia-arch: x86
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: julia-actions/setup-julia@v1
|
||||
- uses: actions/checkout@v5
|
||||
- uses: julia-actions/setup-julia@v2
|
||||
with:
|
||||
version: ${{ matrix.julia-version }}
|
||||
- uses: julia-actions/julia-buildpkg@v1
|
||||
@@ -68,4 +68,4 @@ If the registry contains private packages, or is itself private, the ssh protoco
|
||||
...
|
||||
```
|
||||
|
||||
For Julia 1.7 and above, the `git_cli` option can be used to set the `JULIA_PKG_USE_CLI_GIT` [environment flag](https://docs.julialang.org/en/v1/manual/environment-variables/), for additional control of the SSH configuration used by `Pkg` to add/dev packages.
|
||||
For Julia 1.7 and above, the `git_cli` option can be used to set the `JULIA_PKG_USE_CLI_GIT` [environment flag](https://docs.julialang.org/en/v1/manual/environment-variables/), for additional control of the SSH configuration used by `Pkg` to add/dev packages.
|
||||
|
||||
Reference in New Issue
Block a user