Skip to content

Commit

Permalink
Run Node.js ARM workflow on GitHub runner (#2859)
Browse files Browse the repository at this point in the history
  • Loading branch information
louwers authored Oct 7, 2024
1 parent d83c4ac commit 64c8be5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/actionlint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ self-hosted-runner:
labels:
- macos-14 # can be removed once actionlint is updated
- ubuntu-24.04 # can be removed once actionlint is updated
- MapLibre_Native_Ubuntu_22_04_ARM_8_core
# Configuration variables in array of strings defined in your repository or
# organization. `null` means disabling configuration variables check.
# Empty array means no configuration variable is allowed.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/node-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
include:
- runs-on: ubuntu-22.04
arch: x86_64
- runs-on: [self-hosted, linux, ARM64]
- runs-on: MapLibre_Native_Ubuntu_22_04_ARM_8_core
arch: arm64
- runs-on: macos-14
arch: arm64
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/node-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
include:
- runs-on: ubuntu-22.04
arch: x86_64
- runs-on: [self-hosted, linux, ARM64]
- runs-on: MapLibre_Native_Ubuntu_22_04_ARM_8_core
arch: arm64
- runs-on: macos-14
arch: arm64
Expand Down
4 changes: 2 additions & 2 deletions test/util/memory.test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ class MemoryTest {
public:
MemoryTest() {
fileSource->styleResponse = [&](const Resource& res) {
auto resName = "style_" + getType(res) + ".json";
auto resName = std::string("style_") + getType(res) + ".json";
return response(resName);
};
fileSource->tileResponse = [&](const Resource& res) {
auto resName = getType(res) + ".tile";
return response(resName);
};
fileSource->sourceResponse = [&](const Resource& res) {
auto resName = "source_" + getType(res) + ".json";
auto resName = std::string("source_") + getType(res) + ".json";
return response(resName);
};
fileSource->glyphsResponse = [&](const Resource&) {
Expand Down

0 comments on commit 64c8be5

Please sign in to comment.