]> gitweb.factorcode.org Git - factor.git/commitdiff
.github: rename to build.yml
authorJohn Benediktsson <mrjbq7@gmail.com>
Wed, 12 Jan 2022 18:49:31 +0000 (10:49 -0800)
committerJohn Benediktsson <mrjbq7@gmail.com>
Wed, 12 Jan 2022 18:49:31 +0000 (10:49 -0800)
.github/workflows/build-test-core.yml [deleted file]
.github/workflows/build.yml [new file with mode: 0644]

diff --git a/.github/workflows/build-test-core.yml b/.github/workflows/build-test-core.yml
deleted file mode 100644 (file)
index 77588c0..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-name: C/C++ CI
-
-on:
-  push:
-    branches: [ master ]
-  pull_request:
-    branches: [ master ]
-
-jobs:
-  build-linux:
-    runs-on: ubuntu-latest
-    steps:
-    - uses: actions/checkout@v2
-    - name: bootstrap
-      run: ./build.sh net-bootstrap
-    - name: load-all
-      run: './factor -e="USING: memory namespaces parser.notes vocabs.hierarchy ; parser-quiet? off load-all save"'
-    - name: test
-      run: './factor -run=tools.test resource:core'
-    - name: help-lint
-      run: './factor -run=help.lint resource:core resource:basis'
-
-  build-macos:
-    runs-on: macos-11
-    steps:
-    - uses: actions/checkout@v2
-    - name: build
-      run: arch -x86_64 ./build.sh net-bootstrap
-    - name: load-all
-      run: './factor -e="USING: memory namespaces parser.notes vocabs.hierarchy ; parser-quiet? off load-all save"'
-    - name: test
-      run: './factor -run=tools.test resource:core'
-    - name: help-lint
-      run: './factor -run=help.lint resource:core resource:basis'
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
new file mode 100644 (file)
index 0000000..7b93798
--- /dev/null
@@ -0,0 +1,34 @@
+name: Build
+
+on:
+  push:
+    branches: [ master ]
+  pull_request:
+    branches: [ master ]
+
+jobs:
+  build-linux:
+    runs-on: ubuntu-latest
+    steps:
+    - uses: actions/checkout@v2
+    - name: bootstrap
+      run: ./build.sh net-bootstrap
+    - name: load-all
+      run: './factor -e="USING: memory namespaces parser.notes vocabs.hierarchy ; parser-quiet? off load-all save"'
+    - name: test
+      run: './factor -run=tools.test resource:core'
+    - name: help-lint
+      run: './factor -run=help.lint resource:core resource:basis'
+
+  build-macos:
+    runs-on: macos-11
+    steps:
+    - uses: actions/checkout@v2
+    - name: build
+      run: arch -x86_64 ./build.sh net-bootstrap
+    - name: load-all
+      run: './factor -e="USING: memory namespaces parser.notes vocabs.hierarchy ; parser-quiet? off load-all save"'
+    - name: test
+      run: './factor -run=tools.test resource:core'
+    - name: help-lint
+      run: './factor -run=help.lint resource:core resource:basis'