Compare commits

...

5 Commits

Author SHA1 Message Date
gary d294c7bcf6 [nostalgia/gitea] Change build labels
Build / build-linux (push) Successful in 1m23s
Build / build-mac (push) Successful in 2m49s
2026-05-31 23:00:40 -05:00
gary 937b1345f1 [nostalgia/gitea] Fix artifact names in Mac build
Build / build-linux (push) Successful in 1m11s
Build / build-mac (push) Successful in 2m54s
2026-05-31 22:51:51 -05:00
gary db2134ed72 [buildcore] Remove mypy invocation
Build / build-linux (push) Successful in 1m14s
Build / build-mac (push) Failing after 2m39s
2026-05-31 22:43:15 -05:00
gary 19c5a3c279 [nostalgia] Add Mac build job
Build / build-linux (push) Successful in 1m10s
Build / build-mac (push) Failing after 40s
2026-05-31 21:22:16 -05:00
gary 500fb8dffa [ox/fs] Cleanup
Build / build (push) Successful in 1m19s
2026-05-31 19:02:27 -05:00
3 changed files with 24 additions and 5 deletions
+22 -2
View File
@@ -3,7 +3,7 @@ run-name: ${{ gitea.actor }} build and test
on: [push] on: [push]
jobs: jobs:
build: build-linux:
runs-on: olympic runs-on: olympic
steps: steps:
- name: Check out repository code - name: Check out repository code
@@ -22,5 +22,25 @@ jobs:
- run: tar cf nostalgia-linux-x86_64.tar nostalgia-linux-x86_64 - run: tar cf nostalgia-linux-x86_64.tar nostalgia-linux-x86_64
- uses: actions/upload-artifact@v3 - uses: actions/upload-artifact@v3
with: with:
name: nostalgia-linux-x86_64 name: 'NostalgiaStudio Linux x86_64'
path: nostalgia-linux-x86_64.tar path: nostalgia-linux-x86_64.tar
build-mac:
runs-on: olympic-mac
steps:
- name: Check out repository code
uses: actions/checkout@v3
- run: make purge configure-debug
- run: make build
- run: make test
- run: make purge configure-asan
- run: make build
- run: make test
- run: make purge configure-release
- run: make build
- run: make test
- run: make pkg-mac
- run: mv dist/darwin-arm64-release/NostalgiaStudio.dmg NostalgiaStudio.dmg
- uses: actions/upload-artifact@v3
with:
name: 'NostalgiaStudio Mac'
path: NostalgiaStudio.dmg
-1
View File
@@ -93,7 +93,6 @@ purge:
${BC_CMD_RM_RF} compile_commands.json ${BC_CMD_RM_RF} compile_commands.json
.PHONY: test .PHONY: test
test: build test: build
${BC_CMD_ENVRUN} ${BC_CMD_PY3} -m mypy ${BC_VAR_SCRIPTS}
${BC_CMD_CMAKE_BUILD} ${BC_VAR_BUILD_PATH} test ${BC_CMD_CMAKE_BUILD} ${BC_VAR_BUILD_PATH} test
.PHONY: test-verbose .PHONY: test-verbose
test-verbose: build test-verbose: build
+2 -2
View File
@@ -31,8 +31,8 @@ Error PassThroughFS::mkdir(StringViewCR path, bool recursive) noexcept {
auto const cleanPath = auto const cleanPath =
endsWith(path, '/') ? substr(path, 0, path.size() - 1) : path; endsWith(path, '/') ? substr(path, 0, path.size() - 1) : path;
bool success = false; bool success = false;
auto p = cleanPath.size() ? m_path / stripSlash(cleanPath) : m_path; auto const p = cleanPath.size() ? m_path / stripSlash(cleanPath) : m_path;
const auto u8p = p.u8string(); auto const u8p = p.u8string();
oxTrace("ox.fs.PassThroughFS.mkdir", std::bit_cast<const char*>(u8p.c_str())); oxTrace("ox.fs.PassThroughFS.mkdir", std::bit_cast<const char*>(u8p.c_str()));
if (recursive) { if (recursive) {
std::error_code ec; std::error_code ec;