Skip to content

Add apt-get update to GitHub Actions runners #573

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions .github/workflows/build_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,11 @@ jobs:
with:
submodules: 'true'

- name: Update apt packages
run: sudo apt-get update

- name: Install ImageMagick
run: sudo apt install imagemagick
run: sudo apt-get install imagemagick

- name: Build release
run: |
Expand Down Expand Up @@ -76,13 +79,14 @@ jobs:
with:
submodules: 'true'

- name: Update apt packages
run: sudo apt-get update

- name: Install ImageMagick
run: sudo apt install imagemagick
run: sudo apt-get install imagemagick

- name: Install GCC 14
run: |
sudo apt-get update
sudo apt-get install -y gcc-14
run: sudo apt-get install -y gcc-14

- name: Build release
run: |
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/post_weekly_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,11 @@ jobs:
with:
submodules: 'true'

- name: Update apt packages
run: sudo apt-get update

- name: Install ImageMagick
run: sudo apt install imagemagick
run: sudo apt-get install imagemagick

- name: Build release
run: |
Expand Down
4 changes: 4 additions & 0 deletions Docs/ChangeLog-5x.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,15 @@ The 5.3.0 release is a minor maintenance release.
* **Feature:** Reference C builds (`ASTCENC_ISA_NONE`) now support compiling
for big-endian CPUs. Compile with `-DASTCENC_BIG_ENDIAN=ON` when compiling
for a big-endian target; it is not auto-detected.
* **Improvement:** Builds using GCC now specify `-flto=auto` to allow
parallel link steps, and remove the log warnings about not setting a CPU
count parameter value.
* **Bug fix:** Builds using MSVC `cl.exe` that do not specify an explicit
ISA using the preprocessor configuration defines will now correctly
default to the SSE2 backend on x86-64 and the NEON backend on Arm64. Previously they would have defaulted to the reference C implementation,
which is around 3.25 times slower.


<!-- ---------------------------------------------------------------------- -->
## 5.2.0

Expand Down