Skip to content

Commit

Permalink
ci: Simplify
Browse files Browse the repository at this point in the history
  • Loading branch information
quite committed Dec 15, 2023
1 parent 2d3a84a commit b172482
Showing 1 changed file with 4 additions and 19 deletions.
23 changes: 4 additions & 19 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
push:
branches:
- 'main'
- 'ci'
pull_request: {}
# allow manual runs:
workflow_dispatch: {}
Expand All @@ -17,30 +18,14 @@ jobs:
# https://github.com/actions/runner/issues/2033#issuecomment-1598547465
options: --user 1001
steps:
- uses: actions/setup-go@v4
with:
go-version: '>=1.20.0'

- name: checkout
uses: actions/checkout@v3
with:
# fetch-depth: 0
#fetch-depth: 0
persist-credentials: false

- name: Clone tkey-libs
uses: actions/checkout@v3
with:
repository: tillitis/tkey-libs
ref: v0.0.2
path: tkey-libs

- name: Build tkey-libs
run: |
cd tkey-libs
make -j
- name: make
run: make LIBDIR=./tkey-libs
- name: build
run: ./build.sh

- name: check fmt of c code
run: make checkfmt
Expand Down

0 comments on commit b172482

Please sign in to comment.