From 98c23c776c722b858001bf158992519ae27fd8e7 Mon Sep 17 00:00:00 2001 From: Eric Bohm Date: Tue, 3 Oct 2023 14:39:26 -0500 Subject: [PATCH 1/3] Revert "GitHub Workflows: Remove autobuild.yml" This reverts commit a6f06dbc84a3114116f32524403657f80ed6939b. --- .github/workflows/autobuild.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/autobuild.yml diff --git a/.github/workflows/autobuild.yml b/.github/workflows/autobuild.yml new file mode 100644 index 0000000000..93073eaf20 --- /dev/null +++ b/.github/workflows/autobuild.yml @@ -0,0 +1,23 @@ +name: Autobuild + +on: + schedule: + - cron: '01 05 * * *' # UTC, corresponds to 00:01 CDT + +jobs: + might: + timeout-minutes: 120 + + runs-on: might + name: netlrts-linux-x86_64 -pedantic + + steps: + - uses: actions/checkout@v2 + - name: build + run: ./build all-test netlrts-linux-x86_64 -g -j6 --with-production -pedantic + - name: test + run: make -C netlrts-linux-x86_64/tmp test TESTOPTS="++local" + - name: testp P=2 + run: make -C netlrts-linux-x86_64/tmp testp P=2 TESTOPTS="++local" + - name: testp P=3 + run: make -C netlrts-linux-x86_64/tmp testp P=3 TESTOPTS="++local" From c83c190bcc757af848e1ae9f2ca1be2d4396b131 Mon Sep 17 00:00:00 2001 From: Eric Bohm Date: Tue, 3 Oct 2023 14:51:41 -0500 Subject: [PATCH 2/3] simple test of nightly build to run on delta --- .github/workflows/nightlybuild.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/nightlybuild.yml diff --git a/.github/workflows/nightlybuild.yml b/.github/workflows/nightlybuild.yml new file mode 100644 index 0000000000..bb7828bc0c --- /dev/null +++ b/.github/workflows/nightlybuild.yml @@ -0,0 +1,19 @@ +name: Autobuild + +on: + schedule: + - cron: '01 05 * * *' # UTC, corresponds to 00:01 CDT + +jobs: + might: + timeout-minutes: 120 + + runs-on: delta + name: mpi-linux-x86_64 + + steps: + - name: build + run: (cd ~/autobuild; ./build_local mpi-linux-x86_64) + - name: results + run: cat ~/autobuild/messages/mpi-linux-x86_64 + From 185d38a875c936abbe991cf90ea4d1903de435f6 Mon Sep 17 00:00:00 2001 From: Eric Bohm Date: Tue, 10 Oct 2023 14:13:33 -0500 Subject: [PATCH 3/3] basic invoke of build_local --- .github/workflows/nightlybuild.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nightlybuild.yml b/.github/workflows/nightlybuild.yml index bb7828bc0c..4de5c8a216 100644 --- a/.github/workflows/nightlybuild.yml +++ b/.github/workflows/nightlybuild.yml @@ -5,7 +5,7 @@ on: - cron: '01 05 * * *' # UTC, corresponds to 00:01 CDT jobs: - might: + delta: timeout-minutes: 120 runs-on: delta