Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix!: update dependencies #52

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
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
8 changes: 4 additions & 4 deletions .github/workflows/ci-unix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
llvm_version: [12, 13]
steps:
- name: Checkout sources
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
Expand All @@ -23,18 +23,18 @@ jobs:
override: true

- name: Cache Rust environment
uses: Swatinem/rust-cache@v1
uses: Swatinem/rust-cache@v2

- name: Install LLVM
uses: KyleMayes/install-llvm-action@v1
uses: KyleMayes/install-llvm-action@v2
with:
version: "${{ matrix.llvm_version }}.0"

- name: Install missing LLVM deps
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-key adv --keyserver hkps://keyserver.ubuntu.com --recv-key C99B11DEB97541F0
sudo apt-get update && sudo apt-get install -y libtinfo5
sudo apt-get update && sudo apt-get install -y libtinfo6

- name: Install cargo-make
uses: actions-rs/cargo@v1
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release-unix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ jobs:
os: [macos-latest, ubuntu-latest]
rust:
- stable
llvm_version: [12, 13]
llvm_version: [15, 16]
env:
C_SDK_VERSION: v0.1.1
LLVM_VERSION: ${{ matrix.llvm_version }}
LLVM_FULL_VERSION: ${{ matrix.llvm_version }}.0.1
TESTING_TAG: v0.0.0-local
steps:
- name: Checkout sources
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
Expand All @@ -30,18 +30,18 @@ jobs:
override: true

- name: Cache Rust environment
uses: Swatinem/rust-cache@v1
uses: Swatinem/rust-cache@v2

- name: Install LLVM
uses: KyleMayes/install-llvm-action@v1
uses: KyleMayes/install-llvm-action@v2
with:
version: "${{ matrix.llvm_version }}.0"

- name: Install missing LLVM deps
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-key adv --keyserver hkps://keyserver.ubuntu.com --recv-key C99B11DEB97541F0
sudo apt-get update && sudo apt-get install -y libtinfo5 cmake
sudo apt-get update && sudo apt-get install -y libtinfo6 cmake

- name: Check LLVM installation
run: llvm-config --version
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
run: ./scripts/release/archive.sh

- name: Upload archive to CI summary
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.RELEASE }}-artifacts
path: |
Expand Down
Loading
Loading