commit 43f4de6db18a95466e9e88149c965bfc0052cc89
parent e6da7ebd1c0d2e51127556fff49ddacf6b930f65
Author: Ellenor Malik <ellenor@umbrellix.net>
Date: Fri, 3 Sep 2021 13:41:15 -0700
Removed continuous integration
Diffstat:
4 files changed, 0 insertions(+), 171 deletions(-)
diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
@@ -1 +0,0 @@
-* @DerDakon @josuah @leahneukirchen @mbhangui @schmonz
diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml
@@ -1,94 +0,0 @@
-name: C/C++ CI
-
-on:
- push:
- branches:
- - '*'
- pull_request:
- branches: [ master ]
-
-jobs:
- build:
- name: ${{ matrix.host }}-${{ matrix.config.name }}
- runs-on: ${{ matrix.host }}
- strategy:
- fail-fast: false
- matrix:
- host: [ubuntu-latest, macos-latest]
- config:
- - {
- name: gcc-default,
- cc: gcc,
- nroff: nroff,
- utmp: false,
- cflags: "",
- makeflags: ""
- }
- - {
- name: gcc-no_obsolete,
- cc: gcc,
- nroff: nroff,
- utmp: false,
- cflags: "-DDEPRECATED_FUNCTIONS_REMOVED",
- makeflags: ""
- }
- - {
- name: gcc-utmp,
- cc: gcc,
- nroff: true,
- utmp: true,
- cflags: "-DDEPRECATED_FUNCTIONS_REMOVED",
- makeflags: "-o qtmp.h"
- }
- - {
- name: clang-default,
- cc: clang,
- nroff: nroff,
- utmp: false,
- cflags: "",
- makeflags: ""
- }
- - {
- name: clang-no_obsolete,
- cc: clang,
- nroff: true,
- utmp: false,
- cflags: "-DDEPRECATED_FUNCTIONS_REMOVED",
- makeflags: ""
- }
- - {
- name: clang-utmp,
- cc: clang,
- nroff: true,
- utmp: true,
- cflags: "-DDEPRECATED_FUNCTIONS_REMOVED",
- makeflags: "-o qtmp.h"
- }
-
- steps:
- - name: checkout
- uses: actions/checkout@v2
-
- - name: test_deps
- run: if [ "${OS}" = "macos-latest" ]; then brew install check; else sudo apt-get install check; fi
- env:
- OS: ${{ matrix.host }}
-
- - name: configure
- run: echo "${CC} -O2 -fPIC -Wall -Wshadow -Werror=implicit-function-declaration -Wimplicit-fallthrough ${CFLAGS}" > conf-cc
- env:
- CC: ${{ matrix.config.cc }}
- CFLAGS: ${{ matrix.config.cflags }}
-
- - name: copy utmp
- if: matrix.config.utmp
- run: cp qtmp.h1 qtmp.h
-
- - name: make
- run: make -j 2 ${MAKEFLAGS} it man NROFF=${NROFF}
- env:
- NROFF: ${{ matrix.config.nroff }}
- MAKEFLAGS: ${{ matrix.config.makeflags }}
-
- - name: unittests
- run: make test
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml
@@ -1,29 +0,0 @@
-name: "CodeQL"
-
-on:
- push:
- branches: [master, ]
- pull_request:
- # The branches below must be a subset of the branches above
- branches: [master]
- schedule:
- - cron: '0 18 * * 2'
-
-jobs:
- analyse:
- name: Analyse
- runs-on: ubuntu-latest
-
- steps:
- - name: Checkout repository
- uses: actions/checkout@v2
-
- # Initializes the CodeQL tools for scanning.
- - name: Initialize CodeQL
- uses: github/codeql-action/init@v1
-
- - run: |
- make it
-
- - name: Perform CodeQL Analysis
- uses: github/codeql-action/analyze@v1
diff --git a/.github/workflows/solaris.yml b/.github/workflows/solaris.yml
@@ -1,47 +0,0 @@
-name: C CI on Solaris
-
-on:
- push:
- branches:
- - '*'
- pull_request:
- branches: [ master ]
-
-jobs:
- build:
- name: Solaris-${{ matrix.config.name }}
- runs-on: macos-latest
- env:
- CFLAGS: ${{ matrix.config.cflags }}
- NROFF: ${{ matrix.config.nroff }}
- strategy:
- fail-fast: false
- matrix:
- config:
- - {
- name: default,
- nroff: nroff,
- cflags: ""
- }
- - {
- name: no_obsolete,
- nroff: true,
- cflags: "-DDEPRECATED_FUNCTIONS_REMOVED"
- }
-
- steps:
- - name: checkout
- uses: actions/checkout@v2
-
- - name: Test in solaris
- id: test
- uses: vmactions/solaris-vm@v0.0.2
- with:
- envs: 'CFLAGS NROFF'
- prepare: pkgutil -y -i libcheck_dev gcc4core pkgconfig
- run: |
- echo "gcc -O2 -pipe ${CFLAGS}" > conf-cc
- echo "gcc -s" > conf-ld
- make it man NROFF=${NROFF}
- cd tests
- make test