Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Goodman authored Aug 2, 2024
1 parent d9b32cf commit 7d23f47
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,31 +24,28 @@ env:
jobs:
build:
runs-on: ubuntu-latest
container:
image: ghcr.io/lifting-bits/cxx-common/vcpkg-builder-ubuntu-v2:22.04
options: --user 1001

permissions:
contents: write
packages: write

steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: "recursive"
- run: git config --global --add safe.directory '*'

- name: Install Python
uses: actions/setup-python@v5
with:
python-version: "${PYTHON_VER}-dev"
python-version: "3.12.4"

- name: Use Python
run: python --version

- name: Install LLVM
uses: trail-of-forks/install-llvm-action@master
with:
version: "${LLVM_VER}"

- name: Use LLVM
run: clang --version

- name: Install CMake
uses: trail-of-forks/actions-setup-cmake@master
with:
Expand All @@ -57,6 +54,12 @@ jobs:
- name: Use CMake
run: cmake --version

- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: "recursive"
- run: git config --global --add safe.directory '*'

- name: Set up variables
run: |
echo "RELEASE_DIR=${RUNNER_TEMP}/release" >> $GITHUB_ENV
Expand Down

0 comments on commit 7d23f47

Please sign in to comment.