Some Fixes
This commit is contained in:
parent
38d7dda1a7
commit
74ee75e12f
@ -58,7 +58,7 @@ jobs:
|
||||
- name: Checkout Repository
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: true
|
||||
submodules: false
|
||||
# Dependencies
|
||||
- name: Install Dependencies
|
||||
run: ./scripts/install-dependencies.sh test ${{ matrix.arch }}
|
||||
@ -81,7 +81,7 @@ jobs:
|
||||
- name: Checkout Repository
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: true
|
||||
submodules: false
|
||||
# Dependencies
|
||||
- name: Install Dependencies
|
||||
run: ./scripts/install-dependencies.sh example_mods amd64
|
||||
@ -95,7 +95,7 @@ jobs:
|
||||
run: |
|
||||
./scripts/fix-appimage-for-docker.sh ./out/*.AppImage
|
||||
chmod +x ./out/*.AppImage
|
||||
./out/*.AppImage --copy-sdk
|
||||
./out/*.AppImage --appimage-extract-and-run --copy-sdk
|
||||
# Build Example Mods
|
||||
- name: Build Example Mods
|
||||
run: ./example-mods/build.sh
|
||||
|
2
dependencies/symbol-processor/src
vendored
2
dependencies/symbol-processor/src
vendored
@ -1 +1 @@
|
||||
Subproject commit 8249a305df07a0b087b44341afa8c3b27ad7a156
|
||||
Subproject commit 6098f57b03cae72668c6d2c1624a3a3f01d13fa9
|
@ -83,6 +83,8 @@ void load_available_feature_flags(const std::function<void(std::string)> &callba
|
||||
static void run_command_and_set_env(const char *env_name, const char *command[]) {
|
||||
// Only Run If Environmental Variable Is NULL
|
||||
if (getenv(env_name) == nullptr) {
|
||||
// Check $DISPLAY
|
||||
reborn_check_display();
|
||||
// Run
|
||||
int return_code;
|
||||
char *output = run_command(command, &return_code, nullptr);
|
||||
@ -108,7 +110,6 @@ static void run_command_and_set_env(const char *env_name, const char *command[])
|
||||
// Use Zenity To Set Environmental Variable
|
||||
#define DIALOG_TITLE "Launcher"
|
||||
static void run_zenity_and_set_env(const char *env_name, std::vector<std::string> command) {
|
||||
reborn_check_display();
|
||||
// Create Full Command
|
||||
std::vector<std::string> full_command;
|
||||
full_command.push_back("zenity");
|
||||
|
@ -70,6 +70,7 @@ run_build() {
|
||||
run_test() {
|
||||
sudo apt-get install --no-install-recommends -y \
|
||||
"libc6:$1" \
|
||||
"libstdc++6:$1" \
|
||||
"libopenal1:$1" \
|
||||
"libglib2.0-0:$1"
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user