https://github.com/opensc/nightly
OpenSC nightly builds
https://github.com/opensc/nightly
Last synced: 7 months ago
JSON representation
OpenSC nightly builds
- Host: GitHub
- URL: https://github.com/opensc/nightly
- Owner: OpenSC
- License: lgpl-2.1
- Created: 2018-06-08T08:13:15.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2025-02-10T03:37:50.000Z (about 1 year ago)
- Last Synced: 2025-02-10T04:24:00.904Z (about 1 year ago)
- Size: 20.8 GB
- Stars: 6
- Watchers: 11
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
OpenSC nightly builds are available in seperate branches organized by their git identifier. The latest build can be downloaded as follows:
```sh
# Get OpenSC
git clone https://github.com/OpenSC/OpenSC --single-branch
cd OpenSC
# Get name of branch in Nightly which corresponds to the latest commit in OpenSC
BRANCH=`git log --max-count=1 --date=short --abbrev=8 --pretty=format:"%cd_%h"`
# Download the build
curl https://github.com/OpenSC/Nightly/archive/${BRANCH}.zip -L --output ${BRANCH}.zip
# Unpack the build
unzip ${BRANCH}.zip
```
Single build artifacts may be downloaded using the web interface:
```sh
# Open the build in Firefox
firefox https://github.com/OpenSC/Nightly/tree/${BRANCH}
```
Some build artifacts may be split up into multiple chunks due to file size limitations. The chunks have extensions in alphabetic order (`.aa`, `.ab`, ...). To concatenate them, use something like the following in a terminal:
```sh
# Recreate the macOS image
cat OpenSC*.dmg.* > OpenSC.dmg
```
```cmd
REM Recreate the Windows debug symbols
copy /b OpenSC-0.21.0-rc1_win64-Debug.zip.aa+OpenSC-0.21.0-rc1_win64-Debug.zip.ab OpenSC-Debug.zip
```
Note that old builds may be deleted at any time.