Skip to content

Commit

Permalink
Migrate make tap to GitHub
Browse files Browse the repository at this point in the history
  • Loading branch information
atodorov committed Jun 29, 2020
1 parent d5f0aae commit 87908a3
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 10 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/testing.yml
@@ -0,0 +1,49 @@
name: testing

on:
pull_request:
push:
branches: master

jobs:
static_analysis:
name: ${{ matrix.make-command }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.6]
make-command: [tap]

steps:

- name: Check out code
uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}

- name: Install Python dependencies
run: |
sudo apt-get install libkrb5-dev
pip install -r devel.txt
- name: Prepare ~/.tcms.conf
run: |
echo "[tcms]" > ~/.tcms.conf
echo "url = https://tcms.kiwitcms.org/xml-rpc/" >> ~/.tcms.conf
echo "username = kiwitcms-bot" >> ~/.tcms.conf
echo "password = ${{ secrets.TCMS_PASSWORD }}" >> ~/.tcms.conf
sudo cp .ssl/*.pem /usr/lib/ssl/certs/
sudo update-ca-certificates --fresh
- name: make ${{ matrix.make-command }}
run: |
export TCMS_PRODUCT=$GITHUB_REPOSITORY
# branch name or pull/123
export TCMS_PRODUCT_VERSION=$(echo $GITHUB_REF | sed "s|refs/heads/||" | sed "s|refs/||" | sed "s|/merge||")
# short commit number
export TCMS_BUILD=$(echo $GITHUB_SHA | cut -c1-7)
make ${{ matrix.make-command }}
10 changes: 0 additions & 10 deletions .travis.yml
Expand Up @@ -6,18 +6,8 @@ python:
env:
- MAKE=ci
- MAKE=check-build
- MAKE=tap
install:
- pip install -r devel.txt
- |
echo "[tcms]" > ~/.tcms.conf
echo "url = https://tcms.kiwitcms.org/xml-rpc/" >> ~/.tcms.conf
echo "username = kiwitcms-bot" >> ~/.tcms.conf
echo "password = $TCMS_PASSWORD" >> ~/.tcms.conf
sudo cp .ssl/*.pem /usr/lib/ssl/certs/
sudo update-ca-certificates --fresh
script:
- make $MAKE

Expand Down

0 comments on commit 87908a3

Please sign in to comment.