-
Notifications
You must be signed in to change notification settings - Fork 11
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
Reenable GitHub Actions builds #7
base: master
Are you sure you want to change the base?
Conversation
0255e09
to
6372d8b
Compare
.github/workflows/build_cmake.yml
Outdated
|
||
- name: Configure (Linux) | ||
if: runner.os == 'Linux' | ||
shell: bash --noprofile --norc -eo pipefail -x {0} | ||
run: cmake $cmake_args -H. -Bbuild -GNinja -DCMAKE_BUILD_TYPE=${{ matrix.config.build_type }} | ||
run: cmake $cmake_args -H. -Bbuild -GNinja -DPORT=Qt -DCMAKE_BUILD_TYPE=${{ matrix.config.build_type }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would be better to bring back 4ba116a and avoid using -PORT=Qt
everywhere. Also, users would be less eager to trying building with different port value (which is likely going to fail)
@@ -34,8 +34,11 @@ extern "C" { | |||
GDBusNodeInfo* g_dbus_node_info_ref(GDBusNodeInfo*); | |||
void g_dbus_node_info_unref(GDBusNodeInfo*); | |||
}; | |||
|
|||
#if !PLATFORM(QT) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change certainly belongs to a separate commit
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Definitely. My plan is to try to get the builds working and then extract out the work separately. I only have CI to reproduce this so need to rewrite history anyway.
6372d8b
to
4a65af1
Compare
4a65af1
to
1468f8c
Compare
movableink/webkit
uses themaster
branch; enable GitHub Actions to run against it.