]> the.earth.li Git - onak.git/commitdiff
Switch from Travis CI to GitHub Actions
authorJonathan McDowell <noodles@earth.li>
Thu, 14 Sep 2023 14:07:40 +0000 (19:37 +0530)
committerJonathan McDowell <noodles@earth.li>
Thu, 14 Sep 2023 14:07:40 +0000 (19:37 +0530)
The free Travis bits stopped working ages ago, let's try out GitHub's
Actions support as a replacement. Just a simple build + test without
extra deps to start with.

.github/workflows/build-test.yml [new file with mode: 0644]
.travis.yml [deleted file]

diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml
new file mode 100644 (file)
index 0000000..325539c
--- /dev/null
@@ -0,0 +1,25 @@
+name: onak build test
+
+on:
+  push:
+    branches: [ $default-branch ]
+  pull_request:
+    branches: [ $default-branch ]
+
+jobs:
+  build:
+
+    runs-on: ubuntu-latest
+
+    steps:
+    - uses: actions/checkout@v3
+
+    - name: Configure CMake
+      run: cmake -B ${{github.workspace}}/build
+
+    - name: Build
+      run: cmake --build ${{github.workspace}}/build
+
+    - name: Test
+      working-directory: ${{github.workspace}}/build
+      run: ctest
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644 (file)
index cec8f00..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-language: c
-dist: bionic
-compiler:
-  - clang
-  - gcc
-git:
-  depth: false
-addons:
-  apt:
-    packages:
-      - cmake
-      - libdb-dev
-      - libcurl4-gnutls-dev
-      - libpq-dev
-      - libsystemd-dev
-      - nettle-dev
-before_script:
-  - mkdir travis-build
-  - cd travis-build
-  - cmake ..
-script: make && make test