Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
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
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ jobs:
with:
script: |
const machines = [
{machine: 'macos-13', os: 'darwin', arch: 'x86_64', cc: 'gcc-14', cxx: 'g++-14', name: 'macOS x86_64'},
{machine: 'macos-14', os: 'darwin', arch: 'arm64', cc: 'gcc-14', cxx: 'g++-14', name: 'macOS ARM64'},
{machine: 'macos-15-intel', os: 'darwin', arch: 'x86_64', cc: 'gcc-14', cxx: 'g++-14', name: 'macOS x86_64'},
{machine: 'macos-15', os: 'darwin', arch: 'arm64', cc: 'gcc-14', cxx: 'g++-14', name: 'macOS ARM64'},
{machine: 'ubuntu-24.04-arm', os: 'linux', arch: 'aarch64', cc: 'gcc-12', cxx: 'g++-12', name: 'Linux ARM64'},
{machine: 'ubuntu-24.04', os: 'linux', arch: 'x86_64', cc: 'gcc-12', cxx: 'g++-12', name: 'Linux x86_64'}
];
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ jobs:
fail-fast: false
matrix:
include:
- machine: 'macos-13'
- machine: 'macos-15-intel'
os: 'darwin'
arch: 'x86_64'
name: macOS x86_64
cc: 'gcc-14'
cxx: 'g++-14'
- machine: 'macos-14'
- machine: 'macos-15'
os: 'darwin'
arch: 'arm64'
name: macOS ARM64
Expand All @@ -45,7 +45,7 @@ jobs:

runs-on: ${{ matrix.machine }}
env:
ARTIFACT_NAME: arm-webos-linux-gnueabi_sdk-buildroot_${{matrix.os}}-${{matrix.arch}}-${{matrix.cc}}.tar.bz2
ARTIFACT_NAME: arm-webos-linux-gnueabi_sdk-buildroot_${{matrix.os}}-${{matrix.arch}}.tar.bz2

steps:
- uses: actions/checkout@v5
Expand Down