Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
test-linux:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install LLVM 18 and system deps
run: |
Expand All @@ -34,7 +34,7 @@ jobs:
--out exp_poly_f32_result.json || true

- name: Upload bench results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: bench-result-ubuntu-24.04
path: 'exp_poly_f32_result.json'
Expand All @@ -43,7 +43,7 @@ jobs:
test-linux-arm:
runs-on: ubuntu-24.04-arm
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install LLVM 18 and system deps
run: |
Expand All @@ -61,7 +61,7 @@ jobs:
public-api-check:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install LLVM 18 and system deps
run: |
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
LLVM_VERSION: "18.1.8"
LLVM_SYS_181_PREFIX: C:\llvm
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Download and extract LLVM 18
shell: pwsh
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
build:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install mdBook
run: |
Expand All @@ -29,7 +29,7 @@ jobs:
run: ./mdbook build docs/

- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v3
uses: actions/upload-pages-artifact@v5
with:
path: docs/book

Expand All @@ -42,4 +42,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
uses: actions/deploy-pages@v5
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
build-linux:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install LLVM 18 and system deps
run: |
Expand All @@ -34,14 +34,14 @@ jobs:
tar czf ea-linux-x86_64.tar.gz ea-linux-x86_64

- name: Upload to release
uses: softprops/action-gh-release@v2
uses: softprops/action-gh-release@v3
with:
files: ea-linux-x86_64.tar.gz

build-linux-arm:
runs-on: ubuntu-24.04-arm
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install LLVM 18 and system deps
run: |
Expand All @@ -63,7 +63,7 @@ jobs:
tar czf ea-linux-aarch64.tar.gz ea-linux-aarch64

- name: Upload to release
uses: softprops/action-gh-release@v2
uses: softprops/action-gh-release@v3
with:
files: ea-linux-aarch64.tar.gz

Expand All @@ -73,7 +73,7 @@ jobs:
LLVM_VERSION: "18.1.8"
LLVM_SYS_181_PREFIX: C:\llvm
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Download and extract LLVM 18
shell: pwsh
Expand Down Expand Up @@ -110,6 +110,6 @@ jobs:
Compress-Archive -Path ea-windows-x86_64 -DestinationPath ea-windows-x86_64.zip

- name: Upload to release
uses: softprops/action-gh-release@v2
uses: softprops/action-gh-release@v3
with:
files: ea-windows-x86_64.zip
Loading