-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
--HG-- branch : release
- Loading branch information
Showing
66 changed files
with
8,655 additions
and
178 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# release.yml | ||
# Copyright (C) 2020 Kaz Nishimura | ||
# | ||
# Copying and distribution of this file, with or without modification, are | ||
# permitted in any medium without royalty provided the copyright notice and | ||
# this notice are preserved. This file is offered as-is, without any warranty. | ||
--- | ||
on: | ||
push: | ||
tags: | ||
- release/* | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- id: set-version | ||
run: | | ||
echo "::set-output name=version::`expr '${{ github.ref }}' : '.*/\(.*\)'`" | ||
- uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ github.ref }} | ||
release_name: Version ${{ steps.set-version.outputs.version }} | ||
body: | | ||
This is ${{ steps.set-version.outputs.version }} of.... | ||
draft: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
25ee843f907eb7376ad6f1af1aa15d40622062bb release/1-alpha.1 | ||
9692febc64935c4c6db640dd9c5c1244dec3d43c release/1-alpha.2 | ||
60e4429974732831ef81924059dbfc7b824c8c0d release/1-alpha.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#if !defined _Noreturn && __STDC_VERSION__ < 201112 | ||
# if (3 <= __GNUC__ || (__GNUC__ == 2 && 8 <= __GNUC_MINOR__) \ | ||
|| 0x5110 <= __SUNPRO_C) | ||
# define _Noreturn __attribute__ ((__noreturn__)) | ||
# elif 1200 <= _MSC_VER | ||
# define _Noreturn __declspec (noreturn) | ||
# else | ||
# define _Noreturn | ||
# endif | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/* A C macro for declaring that specific arguments must not be NULL. | ||
Copyright (C) 2009-2014 Free Software Foundation, Inc. | ||
This program is free software: you can redistribute it and/or modify it | ||
under the terms of the GNU General Public License as published | ||
by the Free Software Foundation; either version 3 of the License, or | ||
(at your option) any later version. | ||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with this program. If not, see <http://www.gnu.org/licenses/>. */ | ||
|
||
/* _GL_ARG_NONNULL((n,...,m)) tells the compiler and static analyzer tools | ||
that the values passed as arguments n, ..., m must be non-NULL pointers. | ||
n = 1 stands for the first argument, n = 2 for the second argument etc. */ | ||
#ifndef _GL_ARG_NONNULL | ||
# if (__GNUC__ == 3 && __GNUC_MINOR__ >= 3) || __GNUC__ > 3 | ||
# define _GL_ARG_NONNULL(params) __attribute__ ((__nonnull__ params)) | ||
# else | ||
# define _GL_ARG_NONNULL(params) | ||
# endif | ||
#endif |
Oops, something went wrong.