mirror of
https://github.com/Noratrieb/does-it-build.git
synced 2026-01-14 18:35:01 +01:00
This is necessary for AVR and AMDGPU. We currently just hardcode some flags in the binary, which is good enough. There's a new column which keeps track of the used flags and shows them for a build. A migration makes sure that the older results are properly backfilled with the flags to make them build.
8 lines
240 B
SQL
8 lines
240 B
SQL
-- Add migration script here
|
|
|
|
ALTER TABLE build_info
|
|
ADD COLUMN rustflags VARCHAR;
|
|
|
|
DELETE FROM build_info WHERE target IN ('avr-none', 'amdgcn-amd-amdhsa') AND mode = 'core';
|
|
|
|
DELETE FROM finished_nightly WHERE nightly > '2025-02-11';
|