mirror of
https://github.com/flatpak/flatpak.git
synced 2026-03-13 12:41:01 -04:00
This lets you skip rebuilds unless the actual json changes. This is useful for continuos builds that only run if the json changes, not on any commit to any git source.
114 lines
6.2 KiB
C
114 lines
6.2 KiB
C
/*
|
|
* Copyright © 2015 Red Hat, Inc
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* Authors:
|
|
* Alexander Larsson <alexl@redhat.com>
|
|
*/
|
|
|
|
#ifndef __BUILDER_CONTEXT_H__
|
|
#define __BUILDER_CONTEXT_H__
|
|
|
|
#include <gio/gio.h>
|
|
#include <libsoup/soup.h>
|
|
#include "builder-options.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
/* BuilderContext defined in builder-cache.h to fix include loop */
|
|
|
|
#define BUILDER_TYPE_CONTEXT (builder_context_get_type ())
|
|
#define BUILDER_CONTEXT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), BUILDER_TYPE_CONTEXT, BuilderContext))
|
|
#define BUILDER_IS_CONTEXT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), BUILDER_TYPE_CONTEXT))
|
|
|
|
GType builder_context_get_type (void);
|
|
|
|
GFile * builder_context_get_app_dir (BuilderContext *self);
|
|
GFile * builder_context_get_app_dir_raw (BuilderContext *self);
|
|
GFile * builder_context_get_run_dir (BuilderContext *self);
|
|
GFile * builder_context_get_base_dir (BuilderContext *self);
|
|
void builder_context_set_base_dir (BuilderContext *self,
|
|
GFile *base_dir);
|
|
GFile * builder_context_get_state_dir (BuilderContext *self);
|
|
GFile * builder_context_get_cache_dir (BuilderContext *self);
|
|
GFile * builder_context_get_build_dir (BuilderContext *self);
|
|
GFile * builder_context_allocate_build_subdir (BuilderContext *self,
|
|
const char *name,
|
|
GError **error);
|
|
GFile * builder_context_get_ccache_dir (BuilderContext *self);
|
|
GFile * builder_context_get_download_dir (BuilderContext *self);
|
|
SoupSession * builder_context_get_soup_session (BuilderContext *self);
|
|
const char * builder_context_get_arch (BuilderContext *self);
|
|
void builder_context_set_arch (BuilderContext *self,
|
|
const char *arch);
|
|
const char * builder_context_get_stop_at (BuilderContext *self);
|
|
void builder_context_set_stop_at (BuilderContext *self,
|
|
const char *module);
|
|
int builder_context_get_jobs (BuilderContext *self);
|
|
void builder_context_set_jobs (BuilderContext *self,
|
|
int n_jobs);
|
|
void builder_context_set_keep_build_dirs (BuilderContext *self,
|
|
gboolean keep_build_dirs);
|
|
gboolean builder_context_get_keep_build_dirs (BuilderContext *self);
|
|
void builder_context_set_sandboxed (BuilderContext *self,
|
|
gboolean sandboxed);
|
|
gboolean builder_context_get_sandboxed (BuilderContext *self);
|
|
void builder_context_set_global_cleanup (BuilderContext *self,
|
|
const char **cleanup);
|
|
const char ** builder_context_get_global_cleanup (BuilderContext *self);
|
|
void builder_context_set_global_cleanup_platform (BuilderContext *self,
|
|
const char **cleanup);
|
|
const char ** builder_context_get_global_cleanup_platform (BuilderContext *self);
|
|
BuilderOptions *builder_context_get_options (BuilderContext *self);
|
|
void builder_context_set_options (BuilderContext *self,
|
|
BuilderOptions *option);
|
|
gboolean builder_context_get_build_runtime (BuilderContext *self);
|
|
void builder_context_set_build_runtime (BuilderContext *self,
|
|
gboolean build_runtime);
|
|
gboolean builder_context_get_build_extension (BuilderContext *self);
|
|
void builder_context_set_build_extension (BuilderContext *self,
|
|
gboolean build_extension);
|
|
gboolean builder_context_get_separate_locales (BuilderContext *self);
|
|
void builder_context_set_separate_locales (BuilderContext *self,
|
|
gboolean separate_locales);
|
|
gboolean builder_context_get_rebuild_on_sdk_change (BuilderContext *self);
|
|
void builder_context_set_rebuild_on_sdk_change (BuilderContext *self,
|
|
gboolean rebuild_on_sdk_change);
|
|
char * builder_context_get_checksum_for (BuilderContext *self,
|
|
const char *name);
|
|
void builder_context_set_checksum_for (BuilderContext *self,
|
|
const char *name,
|
|
const char *checksum);
|
|
|
|
|
|
BuilderContext *builder_context_new (GFile *run_dir,
|
|
GFile *app_dir);
|
|
gboolean builder_context_enable_ccache (BuilderContext *self,
|
|
GError **error);
|
|
gboolean builder_context_enable_rofiles (BuilderContext *self,
|
|
GError **error);
|
|
gboolean builder_context_get_rofiles_active (BuilderContext *self);
|
|
gboolean builder_context_get_use_rofiles (BuilderContext *self);
|
|
void builder_context_set_use_rofiles (BuilderContext *self,
|
|
gboolean use_rofiles);
|
|
char ** builder_context_extend_env (BuilderContext *self,
|
|
char **envp);
|
|
|
|
G_DEFINE_AUTOPTR_CLEANUP_FUNC (BuilderContext, g_object_unref)
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __BUILDER_CONTEXT_H__ */
|