-
Notifications
You must be signed in to change notification settings - Fork 2
131 lines (126 loc) · 3.78 KB
/
ci.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
name: ci
on:
pull_request:
push:
branches: ['master']
tags: ['v*']
schedule:
- cron: '00 01 * * *'
jobs:
test:
name: test
runs-on: ${{ matrix.os }}
env:
CARGO: cargo
TARGET:
strategy:
fail-fast: false
matrix:
build:
- x86_64-unknown-linux-musl
- x86_64-apple-darwin
- aarch64-apple-darwin
- x86_64-pc-windows-msvc
include:
- build: x86_64-unknown-linux-musl
os: ubuntu-latest
- build: x86_64-apple-darwin
os: macos-13
- build: aarch64-apple-darwin
os: macos-14
- build: x86_64-pc-windows-msvc
os: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4
name: Clone tokens
with:
path: assets/
repository: pdx-tools/tokens
token: ${{secrets.GH_PAT}}
- name: Cache saves
uses: actions/cache@v4
with:
path: assets/saves
key: assets/saves
- name: Install Cross
if: matrix.os == 'ubuntu-latest'
run: |
cargo install --version 0.2.1 cross
echo "CARGO=cross" >> $GITHUB_ENV
- name: Build
run: ${{ env.CARGO }} build --verbose --target "${{ matrix.build }}"
- name: Test
run: ${{ env.CARGO }} test --verbose --target "${{ matrix.build }}"
- name: Build Release Artifact
run: ${{ env.CARGO }} build --release --verbose --target "${{ matrix.build }}"
- name: Stage Release
shell: bash
run: |
if [[ "${GITHUB_REF}" = *refs/tags/* ]]; then
VERSION="${GITHUB_REF#refs/tags/}"
else
VERSION="vnightly"
fi
echo "version is $VERSION"
STAGING="rakaly-${VERSION:1}-${{ matrix.build }}"
echo "STAGING DIR: $STAGING"
mkdir $STAGING
if [[ "${{ matrix.os }}" = windows* ]]; then
cp "target/${{ matrix.build }}/release/rakaly.exe" "$STAGING/"
else
cp "target/${{ matrix.build }}/release/rakaly" "$STAGING/"
fi
echo "ASSET=$STAGING" >> $GITHUB_ENV
- uses: actions/upload-artifact@v4
with:
path: ${{ env.ASSET }}
name: ${{ env.ASSET }}
if-no-files-found: error
release:
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
path: artifacts-temp
- name: Flatten artifacts
run: |
mkdir artifacts
cd artifacts-temp
for i in *; do
if [[ "$i" = *windows* ]]; then
7z a "../artifacts/$(basename "$i").zip" "$i"
else
tar czf "../artifacts/$(basename "$i").tar.gz" "$i"
fi
done
ls -lR ../artifacts
- name: Create Release
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
uses: actions/github-script@v7
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
console.log('environment', process.versions);
const fs = require('fs').promises;
const { repo: { owner, repo }, sha } = context;
console.log({ owner, repo, sha });
const tag_name = process.env.GITHUB_REF.split("/")[2];
const release = await github.rest.repos.createRelease({
owner, repo,
tag_name,
draft: false,
target_commitish: sha
});
console.log('created release', { release });
for (let file of await fs.readdir('artifacts')) {
console.log('uploading', file);
await github.rest.repos.uploadReleaseAsset({
owner, repo,
release_id: release.data.id,
name: file,
data: await fs.readFile(`artifacts/${file}`)
});
}