Test imported token api #20581
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
name: Reproducible Assets | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
native_asset_build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-20.04, ubuntu-22.04, macos-12, macos-13] | |
time: [now, future] | |
steps: | |
- name: Unbork mac | |
run: | | |
if command -v brew ; then | |
brew install bash | |
brew install jq | |
brew install coreutils | |
brew install gzip | |
brew install xz | |
echo "/usr/local/bin" >> $GITHUB_PATH | |
echo "$(brew --prefix)/opt/gnu-sed/libexec/gnubin" >> $GITHUB_PATH | |
fi | |
- name: Install dependencies | |
run: | | |
case "$(uname)" in | |
Linux) | |
sudo apt install faketime | |
;; | |
Darwin) | |
brew install libfaketime | |
;; | |
*) | |
echo Unsupported OS: $(uname) | |
exit 1 | |
;; | |
esac | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Get node version | |
run: jq -r '"NODE_VERSION=\(.defaults.build.config.NODE_VERSION)"' dfx.json >> $GITHUB_ENV | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Get dfx version | |
run: echo "DFX_VERSION=$(jq -r .dfx dfx.json)" >> $GITHUB_ENV | |
- name: Install dfx | |
uses: dfinity/setup-dfx@main | |
with: | |
dfx-version: ${{ env.DFX_VERSION }} | |
- name: Show versions | |
run: | | |
for exec in bash dfx jq npm node gzip xz ; do | |
echo $exec --version | |
"$exec" --version | |
done | |
- name: Get dependencies | |
run: | | |
# Note: This is to make network access unnecessary during the time-shifted build. | |
cd frontend | |
npm ci | |
- name: Build | |
run: | | |
export DFX_NETWORK=mainnet | |
. config.sh | |
case "${{ matrix.time }}" in | |
future) | |
faketime -f "+5.5y 7m 9s" bash ./build-frontend.sh ;; | |
*) | |
./build-frontend.sh ;; | |
esac | |
mkdir -p builds | |
cp assets.tar.xz "builds/assets_${{ matrix.os }}_${{ matrix.time }}.tar.xz" | |
cp sourcemaps.tar.xz "builds/sourcemaps_${{ matrix.os }}_${{ matrix.time }}.tar.xz" | |
- name: 'Upload assets' | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: "build_${{ matrix.os }}_${{ matrix.time }}" | |
path: builds/*.tar.xz | |
retention-days: 1 | |
- name: 'Output the hash' | |
run: | | |
mkdir -p hashes | |
sha256sum assets.tar.xz > "hashes/assets_sha256_${{ matrix.os }}_${{ matrix.time }}.txt" | |
- name: 'Upload hashes' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: "hashes_${{ matrix.os }}_${{ matrix.time }}" | |
path: "hashes/assets_sha256_${{ matrix.os }}_${{ matrix.time }}.txt" | |
compare_hashes: | |
runs-on: ubuntu-latest | |
needs: [native_asset_build] | |
steps: | |
- name: Merge Hashes | |
uses: actions/upload-artifact/merge@v4 | |
with: | |
name: hashes | |
pattern: hashes_* | |
- name: Merge Builds | |
uses: actions/upload-artifact/merge@v4 | |
with: | |
name: builds | |
pattern: build_* | |
- name: Get hashes | |
uses: actions/download-artifact@v4 | |
with: | |
name: hashes | |
path: hashes | |
- name: Print hashes | |
run: | | |
echo Hashes: | |
grep -r . hashes/ | awk -F: '{printf "%s: %s\n", $2, $1}' | sort | |
(( $(cat hashes/*.txt | sort | uniq | wc -l) == 1 )) |