Skip to content

Commit

Permalink
hack 3
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-noland committed Oct 23, 2024
1 parent 73e0886 commit 478b087
Showing 1 changed file with 14 additions and 16 deletions.
30 changes: 14 additions & 16 deletions .github/workflows/sterile-build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,38 +10,36 @@ concurrency:
cancel-in-progress: true

permissions:
contents: write
packages: read
id-token: write
contents: "write"
packages: "read"
id-token: "write"
jobs:
compile:
runs-on:
- lab
- "lab"
strategy:
fail-fast: false
matrix:
dpdk_sys:
- main
- "main"
just:
- "1.36.0"
rust:
- stable
- pinned
- "pinned"
profile:
- debug
- release
container:
image: ghcr.io/githedgehog/dpdk-sys/ci-env:${{ matrix.dpdk_sys }}-rust-${{ matrix.rust }}
credentials:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
volumes:
- /tmp:/tmp
- "debug"
- "release"
steps:
- name: login to ghcr.io
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: install just
uses: extractions/setup-just@v2
with:
just-version: ${{matrix.just}}
- name: Checkout
uses: actions/checkout@v4
- run: just sterile cargo build --profile=${{ matrix.profile }} --target=x86_64-unknown-linux-gnu
Expand Down

0 comments on commit 478b087

Please sign in to comment.