diff options
| author | Andreas T Jonsson <mail@andreasjonsson.se> | 2024-07-02 11:43:01 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-02 11:43:01 +0200 |
| commit | b26f4e0766e50ace52891f09a51ce2a5f953897d (patch) | |
| tree | fd339d9177394543928712ce4baf6907343f3f1c /.github | |
| parent | d912c6e320cd0ef2379f19c3956653daaea0deba (diff) | |
Use pkgsrc llvm for NetBSD CI
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yml | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ca3d87b12..f576700b8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,7 @@ jobs: name: NetBSD Build, Check, and Test runs-on: ubuntu-latest env: - PKGSRC_BRANCH: 2024Q1 + PKGSRC_BRANCH: 2024Q2 steps: - uses: actions/checkout@v4 - name: Build, Check, and Test @@ -19,10 +19,7 @@ jobs: copyback: false prepare: | PKG_PATH="https://cdn.NetBSD.org/pub/pkgsrc/packages/NetBSD/$(uname -p)/$(uname -r | cut -d_ -f1)_${PKGSRC_BRANCH}/All" /usr/sbin/pkg_add pkgin - pkgin -y in gmake git bash python311 - pkgin -y in libxml2 perl zstd - /usr/sbin/pkg_add https://github.com/andreas-jonsson/llvm17-netbsd-bin/releases/download/pkgsrc-current/llvm-17.0.6.tgz - /usr/sbin/pkg_add https://github.com/andreas-jonsson/llvm17-netbsd-bin/releases/download/pkgsrc-current/clang-17.0.6.tgz + pkgin -y in gmake git bash python311 llvm clang ln -s /usr/pkg/bin/python3.11 /usr/bin/python3 run: | git config --global --add safe.directory $(pwd) |