-
-
Notifications
You must be signed in to change notification settings - Fork 268
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4a03800
commit d4a1e14
Showing
1 changed file
with
6 additions
and
12 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
|
@@ -20,17 +20,10 @@ jobs: | |
matrix: | ||
os: | ||
- ubuntu-latest | ||
- macOS-latest | ||
- windows-latest | ||
julia-arch: | ||
- 'x64' | ||
- 'x86' | ||
pkg-server: | ||
- "" | ||
- "pkg.julialang.org" | ||
julia-version: | ||
# - '1.6' | ||
- 'nightly' | ||
exclude: | ||
- os: macOS-latest | ||
julia-arch: x86 | ||
|
@@ -41,9 +34,10 @@ jobs: | |
git config --global core.autocrlf false | ||
git config --global core.eol lf | ||
- uses: actions/checkout@v2 | ||
- uses: julia-actions/setup-julia@latest | ||
- name: Install Julia from URL | ||
uses: julia-actions/install-julia-from-url@main | ||
with: | ||
version: ${{ matrix.julia-version }} | ||
url: https://s3.amazonaws.com/julialangnightlies/assert_pretesting/linux/x64/1.7/julia-4c13026cc7-linux64.tar.gz | ||
- name: Fix TEMP on windows | ||
if: matrix.os == 'windows-latest' | ||
run: | | ||
|
@@ -67,10 +61,10 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: julia-actions/setup-julia@latest | ||
- name: Install Julia from URL | ||
uses: julia-actions/install-julia-from-url@main | ||
with: | ||
# version: '1.6' | ||
version: 'nightly' | ||
url: https://s3.amazonaws.com/julialangnightlies/assert_pretesting/linux/x64/1.7/julia-4c13026cc7-linux64.tar.gz | ||
- name: Generate docs | ||
run: | | ||
julia --color=yes -e 'write("Project.toml", replace(read("Project.toml", String), r"uuid = .*?\n" =>"uuid = \"54cfe95a-1eb2-52ea-b672-e2afdf69b78f\"\n"));' | ||
|