Skip to content

Commit

Permalink
Fix CI build by updating FreeBSD to 13.2 and OpenBSD to 7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
rapperskull committed Feb 27, 2024
1 parent 5a4c7f6 commit 7752518
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
- name: FreeBSD toolchain setup
run: |
sudo apt-get -qq install clang lld && cd /tmp && \
wget -nv http://ftp.plusline.de/FreeBSD/releases/amd64/13.1-RELEASE/base.txz && \
wget -nv http://ftp.plusline.de/FreeBSD/releases/amd64/13.2-RELEASE/base.txz && \
mkdir -p $SYSROOT_PATH && cd $SYSROOT_PATH && \
tar -xf /tmp/base.txz ./lib/ ./usr/lib/ ./usr/include/ && \
cd $SYSROOT_PATH/usr/lib && \
Expand Down Expand Up @@ -144,12 +144,12 @@ jobs:
- name: OpenBSD toolchain setup
run: |
sudo apt-get -qq install clang lld && cd /tmp && \
wget -nv https://cdn.openbsd.org/pub/OpenBSD/7.2/amd64/base72.tgz \
https://cdn.openbsd.org/pub/OpenBSD/7.2/amd64/comp72.tgz && \
wget -nv https://cdn.openbsd.org/pub/OpenBSD/7.4/amd64/base74.tgz \
https://cdn.openbsd.org/pub/OpenBSD/7.4/amd64/comp74.tgz && \
mkdir -p $SYSROOT_PATH && cd $SYSROOT_PATH && \
tar -xf /tmp/base72.tgz ./usr/lib/ ./usr/include/ && \
tar -xf /tmp/comp72.tgz ./usr/lib/ ./usr/include/ && \
rm -f /tmp/base72.tgz /tmp/comp72.tgz
tar -xf /tmp/base74.tgz ./usr/lib/ ./usr/include/ && \
tar -xf /tmp/comp74.tgz ./usr/lib/ ./usr/include/ && \
rm -f /tmp/base74.tgz /tmp/comp74.tgz
- name: CMake generate
run: |
mkdir build && cd build
Expand Down

0 comments on commit 7752518

Please sign in to comment.