-
Notifications
You must be signed in to change notification settings - Fork 0
136 lines (114 loc) · 4.39 KB
/
nightly.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
name: Nightly build
on:
push: # TEMPORARY: Remove before merging PR
branches: main
# schedule: # TEMPORARY: Enable this before merging PR
# - cron: "0 5 * * *" # 0500 UTC every day
jobs:
# Create snapshot of main branch for nightly build
nightly-snapshot:
name: Create snapshot
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.GH_ADMIN_COMMIT_TOKEN }}
- name: Get latest existing tag
uses: actions-ecosystem/action-get-latest-tag@v1
## NEEDS UPDATE for set-output deprecation.
## See https://github.com/actions-ecosystem/action-get-latest-tag/issues/25.
id: get-latest-tag
with:
semver_only: true
- name: Set new version
uses: paulhatch/semantic-version@v5.2.1
id: set-version
with:
tag_prefix: "v"
format: "${major}.${minor}.${patch}-nightly"
major_pattern: "(MAJOR)"
minor_pattern: "(MINOR)"
- name: Log version & changelog
run: |
echo "Version: $VERSION"
echo "Version tag: $VERSION_TAG"
echo "Latest tag detected: $LATEST_TAG"
env:
VERSION: ${{ steps.set-version.outputs.version }}
VERSION_TAG: ${{ steps.set-version.outputs.version_tag }}
LATEST_TAG: ${{ steps.get-latest-tag.outputs.tag }}
# - name: Prevent empty release
# if: ${{ steps.generate-changelog.outputs.stdout == '' }}
# uses: actions/github-script@v3
# with:
# script: |
# core.setFailed("No changes since prior release")
# - name: Update changelog
# run: |
# (head -8 CHANGELOG.md && echo "## $VERSION" && date "+_%d %B %Y_" && echo "" && (echo "$CHANGELOG" | sed -E 's_\(#([0-9]+)\)_([#\1](https://github.com/contentauth/c2pa-rs/pull/\1)\)_') && tail -n +9 CHANGELOG.md) > CHANGELOG.new.md
# mv CHANGELOG.new.md CHANGELOG.md
# env:
# VERSION: ${{ steps.set-version.outputs.version }}
# CHANGELOG: ${{ steps.generate-changelog.outputs.stdout }}
# - name: Install Rust toolchain
# uses: actions-rs/toolchain@v1
# with:
# toolchain: stable
# - name: Bump crate versions
# run: |
# sed -i "s/^version = \"[^\"]*\"$/version = \"$VERSION\"/;" Cargo.toml
# env:
# VERSION: ${{ steps.set-version.outputs.version }}
# - name: Update Cargo.lock
# run: |
# cargo update -p c2patool
# - name: Report differences for "prepare (release)" commit
# run: git diff
# - name: Commit Cargo.toml, Cargo.lock, and changelog
# uses: stefanzweifel/git-auto-commit-action@v4
# ## NEEDS UPDATE for set-output deprecation.
# ## See https://github.com/stefanzweifel/git-auto-commit-action/issues/250.
# id: commit
# with:
# commit_message: Prepare ${{ steps.set-version.outputs.version }} release
# commit_user_name: Adobe CAI Team
# commit_user_email: noreply@adobe.com
# - name: Create GitHub release
# uses: ncipollo/release-action@v1
# with:
# body: ${{ steps.generate-changelog.outputs.stdout }}
# commit: ${{ steps.commit.outputs.commit_hash }}
# prerelease: true # remove at 1.0
# tag: ${{ steps.set-version.outputs.version_tag }}
# token: ${{ secrets.GH_ADMIN_COMMIT_TOKEN }}
# # make this into build step
# tests:
# name: Unit tests
# runs-on: ${{ matrix.os }}
# strategy:
# fail-fast: false
# matrix:
# os: [windows-latest, macos-latest, ubuntu-latest]
# rust_version: [stable, 1.70.0]
# steps:
# - name: Checkout repository
# uses: actions/checkout@v3
# - name: Install Rust toolchain
# uses: dtolnay/rust-toolchain@master
# with:
# toolchain: ${{ matrix.rust_version }}
# components: llvm-tools-preview
# - name: Cache Rust dependencies
# uses: Swatinem/rust-cache@v1
# - name: Install cargo-llvm-cov
# uses: taiki-e/install-action@cargo-llvm-cov
# - name: Generate code coverage
# run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info
# - name: Upload code coverage results
# uses: codecov/codecov-action@v3
# with:
# token: ${{ secrets.CODECOV_TOKEN }}
# fail_ci_if_error: true
# verbose: true