Skip to content

Commit

Permalink
set version and make a release
Browse files Browse the repository at this point in the history
  • Loading branch information
mulle-nat committed May 16, 2023
1 parent f30410b commit 761c2b2
Show file tree
Hide file tree
Showing 5 changed files with 55 additions and 1 deletion.
49 changes: 49 additions & 0 deletions .github/workflows/mulle-sde-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: CI

on: [push,workflow_dispatch]

env:
BUILD_TYPE: release
OTHER_PROJECTS: "mulle-objc/mulle-objc-developer;
mulle-c/mulle-c-developer;"

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest] # macos-latest,

steps:
- name: Set MULLE_HOSTNAME
run: |
name="${GITHUB_REF##*/}"
MULLE_HOSTNAME="${MULLE_HOSTNAME:-ci-${name##*-}}"
echo "MULLE_HOSTNAME=${MULLE_HOSTNAME}" >> $GITHUB_ENV
- name: Add to path
run: echo "$HOME/bin" >> $GITHUB_PATH

- name: Dump Environment
run: env | sort

- uses: actions/checkout@v3

- uses: mulle-sde/github-ci@v1

- uses: mulle-cc/github-ci@v4

- name: Dump Project Environment
run: |
[ ! -d .mulle/etc/env ] || ls -l .mulle/etc/env/environment*.sh
mulle-sde environment
- name: Mulle-SDE Fetch
run: mulle-sde fetch

- name: Mulle-SDE Craft
run: mulle-sde craft --${BUILD_TYPE:-release}

- name: Mulle-SDE Test
run: |
[ ! -d test ] || mulle-sde test
1 change: 1 addition & 0 deletions .mulle/share/sde/extension
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ mulle-sde/cmake;buildtool
mulle-objc/objc-demo;extra
mulle-foundation/objc-demo;extra
mulle-sde/sublime-text;extra
mulle-objc/github-actions;extra
1 change: 1 addition & 0 deletions .mulle/share/sde/version/mulle-objc/github-actions
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.22.0
3 changes: 3 additions & 0 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
### 0.0.1

* add --no-lf option (and append lf by default)
2 changes: 1 addition & 1 deletion src/mulle-pq-version.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* You can maintain this file with `mulle-project-version`
* version: major, minor, patch
*/
#define MULLE_PQ_VERSION ((0 << 20) | (7 << 8) | 56)
#define MULLE_PQ_VERSION ((0 << 20) | (0 << 8) | 1)


static inline unsigned int mulle_pq_get_version_major( void)
Expand Down

0 comments on commit 761c2b2

Please sign in to comment.