changeset 32949:361c1dbe198d bytecode-interpreter

maint: Merge default to bytecode-interpreter.
author Markus Mützel <markus.muetzel@gmx.de>
date Wed, 07 Feb 2024 10:42:37 +0100
parents 4e39502fef4d (current diff) 477264afba70 (diff)
children cc86461a2ab3
files .github/workflows/make.yaml
diffstat 3 files changed, 15 insertions(+), 15 deletions(-) [+]
line wrap: on
line diff
--- a/.github/workflows/codeql-analysis.yaml	Tue Feb 06 12:51:15 2024 -0500
+++ b/.github/workflows/codeql-analysis.yaml	Wed Feb 07 10:42:37 2024 +0100
@@ -21,7 +21,7 @@
 
     steps:
       - name: checkout repository
-        uses: actions/checkout@v3
+        uses: actions/checkout@v4
 
       - name: install dependencies
         run: |
@@ -150,7 +150,7 @@
           msystem: ${{ matrix.msystem }}
 
       - name: checkout repository
-        uses: actions/checkout@v3
+        uses: actions/checkout@v4
 
       - name: bootstrap
         run: ./bootstrap
--- a/.github/workflows/make.yaml	Tue Feb 06 12:51:15 2024 -0500
+++ b/.github/workflows/make.yaml	Wed Feb 07 10:42:37 2024 +0100
@@ -45,7 +45,7 @@
 
     steps:
       - name: checkout repository
-        uses: actions/checkout@v3
+        uses: actions/checkout@v4
 
       - name: install dependencies
         env:
@@ -74,7 +74,7 @@
 
       - name: restore ccache
         # setup the github cache used to maintain the ccache from one job to the next
-        uses: actions/cache/restore@v3
+        uses: actions/cache/restore@v4
         with:
           path: ~/.ccache
           key: ${{ steps.ccache-prepare.outputs.key }}
@@ -127,7 +127,7 @@
 
       - name: save ccache
         # Save the cache after we are done (successfully) building
-        uses: actions/cache/save@v3
+        uses: actions/cache/save@v4
         with:
           path: ~/.ccache
           key: ${{ steps.ccache-prepare.outputs.key }}
@@ -220,7 +220,7 @@
           cat /proc/cpuinfo
 
       - name: checkout repository
-        uses: actions/checkout@v3
+        uses: actions/checkout@v4
 
       - name: install dependencies
         uses: jirutka/setup-alpine@v1
@@ -304,7 +304,7 @@
 
       - name: restore ccache
         # setup the github cache used to maintain the ccache from one job to the next
-        uses: actions/cache/restore@v3
+        uses: actions/cache/restore@v4
         with:
           # location of the ccache of the chroot in the root file system
           path: /home/runner/rootfs/alpine-latest-x86/home/runner/.ccache
@@ -379,7 +379,7 @@
 
       - name: save ccache
         # Save the cache after we are done (successfully) building
-        uses: actions/cache/save@v3
+        uses: actions/cache/save@v4
         with:
           path: /home/runner/rootfs/alpine-latest-x86/home/runner/.ccache
           key: ${{ steps.ccache-prepare.outputs.key }}
@@ -492,7 +492,7 @@
 
     steps:
       - name: checkout repository
-        uses: actions/checkout@v3
+        uses: actions/checkout@v4
 
       - name: install dependencies
         # This step sometimes takes long and still recovers. But sometimes it
@@ -542,7 +542,7 @@
 
       - name: restore ccache
         # setup the github cache used to maintain the ccache from one job to the next
-        uses: actions/cache/restore@v3
+        uses: actions/cache/restore@v4
         id: restore-ccache
         with:
           path: /Users/runner/Library/Caches/ccache
@@ -614,7 +614,7 @@
 
       - name: save ccache
         # Save the cache after we are done (successfully) building
-        uses: actions/cache/save@v3
+        uses: actions/cache/save@v4
         with:
           path: /Users/runner/Library/Caches/ccache
           key: ${{ steps.ccache-prepare.outputs.key }}
@@ -798,7 +798,7 @@
           msystem: ${{ matrix.msystem }}
 
       - name: checkout repository
-        uses: actions/checkout@v3
+        uses: actions/checkout@v4
 
       - name: prepare ccache
         # create key with human readable timestamp
@@ -811,7 +811,7 @@
 
       - name: restore ccache
         # Setup the github cache used to maintain the ccache from one job to the next
-        uses: actions/cache/restore@v3
+        uses: actions/cache/restore@v4
         with:
           path: ${{ steps.ccache-prepare.outputs.ccachedir }}
           key: ${{ steps.ccache-prepare.outputs.key }}
@@ -870,7 +870,7 @@
 
       - name: save ccache
         # Save the cache after we are done (successfully) building
-        uses: actions/cache/save@v3
+        uses: actions/cache/save@v4
         with:
           path: ${{ steps.ccache-prepare.outputs.ccachedir }}
           key: ${{ steps.ccache-prepare.outputs.key }}
--- a/examples/code/embedded.cc	Tue Feb 06 12:51:15 2024 -0500
+++ b/examples/code/embedded.cc	Wed Feb 07 10:42:37 2024 +0100
@@ -26,7 +26,7 @@
       //
       //   interpreter.initialize ();
       //
-      //   if (! interpreter.initialized ())
+      //   if (! interpreter.is_initialized ())
       //     {
       //       std::cerr << "Octave interpreter initialization failed!"
       //                 << std::endl;