Skip to content

Commit

Permalink
build(container): 24.10 + 24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
2moe committed Oct 12, 2024
1 parent 6880d50 commit 9969e89
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/24.04-noble.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: build (24.04, Noble)
# on: { "push": { "paths": [".github/workflows/24.04-noble.yml"] } }
on: { "schedule": [{ "cron": "24 4 */3 * *" }] }
on: { "push": { "paths": [".github/workflows/24.04-noble.yml"] } }
# on: { "schedule": [{ "cron": "24 4 */3 * *" }] }

env:
DEBIAN_FRONTEND: noninteractive
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/24.10-oracular.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: build (24.10, Oracular)
# on: { "push": { "paths": [".github/workflows/24.10-oracular.yml"] } }
on: { "schedule": [{ "cron": "24 10 */5 * *" }] }
on: { "push": { "paths": [".github/workflows/24.10-oracular.yml"] } }
# on: { "schedule": [{ "cron": "24 10 */5 * *" }] }
#

env:
Expand Down
4 changes: 2 additions & 2 deletions ci/create_ci_vars_using_the_gh_api.ers
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/// If true, create vars (`--method POST`). If false, update vars (`--method PATCH`).
const CREATE_VARS: bool = false;

const RUN_GH: bool = false;
const RUN_GH: bool = true;

use anyhow::{bail, Context};
use ron::ser::PrettyConfig;
Expand Down Expand Up @@ -84,7 +84,7 @@ fn main() -> anyhow::Result<()> {
for (ron_file, ref file_content, gh_repo) in [
////
(uuu_os_file, ubuntu_ron, "ubuntu-museum"),
(deb_os_file, debian_ron, "debian-museum"),
// (deb_os_file, debian_ron, "debian-museum"),
] {
map.clear();
let cfg = ron::from_str::<Cfg>(file_content)?;
Expand Down
4 changes: 2 additions & 2 deletions ci/os.ron
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,8 @@
),
"oracular": (
ver: "24.10",
archs: "amd64 arm64 i386 ppc64el riscv64 s390x",
matrix: (arch: ["amd64", "arm64", "i386", "ppc64el", "riscv64", "s390x"]),
archs: "amd64 arm64 armhf i386 ppc64el riscv64 s390x",
matrix: (arch: ["amd64", "arm64", "armhf", "i386", "ppc64el", "riscv64", "s390x"]),
),
"precise": (
ver: "12.04",
Expand Down

0 comments on commit 9969e89

Please sign in to comment.