Skip to content

Commit

Permalink
Fix the "default arch" code path with Julia nightly (and add a CI job…
Browse files Browse the repository at this point in the history
… for that code path)
  • Loading branch information
DilumAluthge committed Jun 25, 2022
1 parent 40f50bc commit 0388eff
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 5 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/example-builds-nightly-defaultarch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Example builds (nightly, default arch)

on:
push:
branches: ['main', 'master', 'releases/*']
pull_request:

jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
julia-version: [nightly, 1.8-nightly]
os: [ubuntu-latest, macOS-latest, windows-latest]

steps:
- uses: actions/checkout@v1.0.0

- name: "Install dependencies"
run: |
npm install --legacy-peer-deps
npm run build
npm run pack
- name: "Set up Julia (${{ matrix.julia-version }})"
uses: ./
with:
version: ${{ matrix.julia-version }}
- run: julia --version
- run: julia --compile=min -O0 -e 'import InteractiveUtils; InteractiveUtils.versioninfo()'
4 changes: 2 additions & 2 deletions .github/workflows/example-builds-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
exclude:
- os: macOS-latest
julia-arch: x86

steps:
- uses: actions/checkout@v1.0.0

- name: "Install dependencies"
run: |
npm install --legacy-peer-deps
Expand Down
6 changes: 3 additions & 3 deletions lib/installer.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 0388eff

Please sign in to comment.