Skip to content

Commit

Permalink
Fix workflows file
Browse files Browse the repository at this point in the history
  • Loading branch information
rushilmehra committed Jun 19, 2024
1 parent 7b48b74 commit ff71f57
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,6 @@ jobs:
version: "12.0.0"
directory: ${{ runner.temp }}/llvm
- name: Install golang
uses: actions/checkout@v4
uses: actions/setup-go@v5
with:
go-version: '>=1.22.0'
Expand Down Expand Up @@ -311,10 +310,14 @@ jobs:
run: rustup update stable --no-self-update && rustup default stable && rustup target add ${{ matrix.target }}
shell: bash
- name: Install Clang-12
uses: KyleMayes/install-llvm-action@v1
uses: KyleMayes/install-llvm-action@v2
with:
version: "12.0.0"
directory: ${{ runner.temp }}/llvm
- name: Install golang
uses: actions/setup-go@v5
with:
go-version: '>=1.22.0'
- name: Add clang++-12 link
working-directory: ${{ runner.temp }}/llvm/bin
run: ln -s clang clang++-12
Expand All @@ -331,6 +334,23 @@ jobs:
- name: Build for ${{ matrix.target }}
run: cargo build --target ${{ matrix.target }} --all-targets --features fips

rushil-test:
name: Testing pulling llvm
runs-on: macos-latest
strategy:
matrix:
include:
- target: x86_64-unknown-linux-gnu
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Install Clang-12
uses: KyleMayes/install-llvm-action@v2
with:
version: "12.0.0"
directory: ${{ runner.temp }}/llvm

test-features:
name: Test features
runs-on: ubuntu-20.04
Expand Down

0 comments on commit ff71f57

Please sign in to comment.