Skip to content

Commit

Permalink
nightly for 20240813
Browse files Browse the repository at this point in the history
  • Loading branch information
Goober5000 committed Aug 30, 2024
1 parent 88adfe2 commit 9e6216d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nightly_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
uses: actions/checkout@v2
with:
repository: scp-fs2open/fs2open.github.com
ref: 8dc1ffea94c8d071f71f4122b5564b0a598c735b
ref: 4cbd84d59e6f8ca8d15382fa6809282117449ded
path: fs2open.github.com
ssh-key: ${{ secrets.SIRKNIGHTLY_PRIVATE_KEY }}
submodules: true
Expand Down
2 changes: 1 addition & 1 deletion git.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

class GitRepository:
def __init__(self, path, branch):
self.branch = "8dc1ffea94c8d071f71f4122b5564b0a598c735b"
self.branch = "4cbd84d59e6f8ca8d15382fa6809282117449ded"
self.path = path

def _format_git_cmd(self, cmd):
Expand Down
6 changes: 3 additions & 3 deletions nightly.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def get_source_version(config, date_version):
class NightlyState(ScriptState):
def __init__(self):
super().__init__(config)
self.branch = "8dc1ffea94c8d071f71f4122b5564b0a598c735b"
self.branch = "4cbd84d59e6f8ca8d15382fa6809282117449ded"

def post_build_actions(self):
# Get the file list
Expand All @@ -75,7 +75,7 @@ def post_build_actions(self):
version = get_source_version(self.config, self.date.strftime(ScriptState.DATEFORMAT_VERSION))
nebula.submit_release(nebula.render_nebula_release(version, "nightly", files, config), config)

commit = "8dc1ffea94c8d071f71f4122b5564b0a598c735b"
commit = "4cbd84d59e6f8ca8d15382fa6809282117449ded"
date = self.date.strftime(ScriptState.DATEFORMAT_FORUM)
log = self.repo.get_log("nightly_*", self.tag_name)

Expand All @@ -85,7 +85,7 @@ def post_build_actions(self):
return True

def get_tag_name(self, params):
return "nightly_20240812_8dc1ffea9"
return "nightly_20240813_4cbd84d59"

def get_tag_pattern(self):
return "nightly_*"
Expand Down
4 changes: 2 additions & 2 deletions script_state.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def _go_to_state(self, state):
print("Latest commit already has a build tag!")
return ScriptState.STATE_FINISHED

self.date = datetime.datetime(2024, 8, 12)
self.date = datetime.datetime(2024, 8, 13)

format_args = {
"date": self.date.strftime(ScriptState.DATEFORMAT_VERSION),
Expand All @@ -72,7 +72,7 @@ def _go_to_state(self, state):
if self.date is None:
# We are probably running with a tag that was already pushed in which case date has not been initialized
# yet
self.date = datetime.datetime(2024, 8, 12)
self.date = datetime.datetime(2024, 8, 13)

# Monitor the created build...
self.success = build_monitor.monitor_builds(self.tag_name, self.config)
Expand Down

0 comments on commit 9e6216d

Please sign in to comment.